Changed [ 'Test::More' ] to [ 'Test'; 'More' ]
==== Patch <rt44663-cage-test-more-namespace-to-keys> level 1 Source: 4c149bba-1ebb-4b29-940e-6c2cefc7587e:/parrot/local:599 Target: d31e2699-5ff4-0310-a27c-f18f2fbe73fe:/trunk:20643 (https://svn.perl.org/parrot/trunk) Log: [EMAIL PROTECTED]: cheepy | 2007-07-14 05:14:58 -0400 Created a local copy of parrot code [EMAIL PROTECTED]: cheepy | 2007-08-16 23:34:43 -0400 Modified 'Test::More' to [ 'Test'; 'More' ] [EMAIL PROTECTED]: cheepy | 2007-08-16 23:41:59 -0400 Modified all 'Test::More' to [ 'Test'; 'More' ] in all test files in t/ [EMAIL PROTECTED]: cheepy | 2007-08-17 07:00:45 -0400 Modified all other occurences of 'Test::More' to [ 'Test'; 'More' ] in code part outside 't/' === runtime/parrot/include/test_more.pir ================================================================== --- runtime/parrot/include/test_more.pir (revision 20643) +++ runtime/parrot/include/test_more.pir (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -12,7 +12,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === runtime/parrot/library/Test/More.pir ================================================================== --- runtime/parrot/library/Test/More.pir (revision 20643) +++ runtime/parrot/library/Test/More.pir (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -10,7 +10,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) @@ -61,7 +61,7 @@ =cut -.namespace [ 'Test::More' ] +.namespace [ 'Test'; 'More' ] .sub _initialize :load load_bytecode 'library/Test/Builder.pir' === src/pmc/exporter.pmc ================================================================== --- src/pmc/exporter.pmc (revision 20643) +++ src/pmc/exporter.pmc (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -13,7 +13,7 @@ .sub main :main load_bytecode 'Test/More.pir' .local pmc exporter, test_ns - test_ns = get_namespace ['Test::More'] + test_ns = get_namespace [ 'Test'; 'More' ] exporter = new 'Exporter' exporter.'import'( test_ns :named('source'), 'plan ok' :named('globals') ) plan(1) === t/pmc/random.t ================================================================== --- t/pmc/random.t (revision 20643) +++ t/pmc/random.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/parrotrunningthread.t ================================================================== --- t/pmc/parrotrunningthread.t (revision 20643) +++ t/pmc/parrotrunningthread.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/stmref.t ================================================================== --- t/pmc/stmref.t (revision 20643) +++ t/pmc/stmref.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/role.t ================================================================== --- t/pmc/role.t (revision 20643) +++ t/pmc/role.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -26,7 +26,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/addrregistry.t ================================================================== --- t/pmc/addrregistry.t (revision 20643) +++ t/pmc/addrregistry.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/unmanagedstruct.t ================================================================== --- t/pmc/unmanagedstruct.t (revision 20643) +++ t/pmc/unmanagedstruct.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/class.t ================================================================== --- t/pmc/class.t (revision 20643) +++ t/pmc/class.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -24,7 +24,7 @@ .sub 'main' :main load_bytecode 'Test/More.pir' .local pmc exporter, test_ns - test_ns = get_namespace ['Test::More'] + test_ns = get_namespace [ 'Test'; 'More' ] exporter = new 'Exporter' exporter.'import'( test_ns :named('source'), 'plan ok is isa_ok todo' :named('globals') ) === t/pmc/stmlog.t ================================================================== --- t/pmc/stmlog.t (revision 20643) +++ t/pmc/stmlog.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/stmvar.t ================================================================== --- t/pmc/stmvar.t (revision 20643) +++ t/pmc/stmvar.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/resizablepmcarray.t ================================================================== --- t/pmc/resizablepmcarray.t (revision 20643) +++ t/pmc/resizablepmcarray.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -909,9 +909,9 @@ .local pmc plan .local pmc ok .local pmc is - plan = find_global 'Test::More', 'plan' - ok = find_global 'Test::More', 'ok' - is = find_global 'Test::More', 'is' + plan = find_global [ 'Test'; 'More' ], 'plan' + ok = find_global [ 'Test'; 'More' ], 'ok' + is = find_global [ 'Test'; 'More' ], 'is' $P1 = new ResizablePMCArray push $P1, 'a' === t/pmc/retcontinuation.t ================================================================== --- t/pmc/retcontinuation.t (revision 20643) +++ t/pmc/retcontinuation.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/parrotlibrary.t ================================================================== --- t/pmc/parrotlibrary.t (revision 20643) +++ t/pmc/parrotlibrary.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/parrotthread.t ================================================================== --- t/pmc/parrotthread.t (revision 20643) +++ t/pmc/parrotthread.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/sharedref.t ================================================================== --- t/pmc/sharedref.t (revision 20643) +++ t/pmc/sharedref.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/deleg_pmc.t ================================================================== --- t/pmc/deleg_pmc.t (revision 20643) +++ t/pmc/deleg_pmc.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/enumerate.t ================================================================== --- t/pmc/enumerate.t (revision 20643) +++ t/pmc/enumerate.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/version.t ================================================================== --- t/pmc/version.t (revision 20643) +++ t/pmc/version.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/exception_handler.t ================================================================== --- t/pmc/exception_handler.t (revision 20643) +++ t/pmc/exception_handler.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/parrotclass.t ================================================================== --- t/pmc/parrotclass.t (revision 20643) +++ t/pmc/parrotclass.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/super.t ================================================================== --- t/pmc/super.t (revision 20643) +++ t/pmc/super.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -26,7 +26,7 @@ # get the testing functions .local pmc exporter, test_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exporter = new 'Exporter' exporter.'source'(test_namespace) exporter.'import'('plan diag ok is like skip isa_ok' :named('globals')) === t/pmc/vtablecache.t ================================================================== --- t/pmc/vtablecache.t (revision 20643) +++ t/pmc/vtablecache.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/object.t ================================================================== --- t/pmc/object.t (revision 20643) +++ t/pmc/object.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -27,7 +27,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/exporter.t ================================================================== --- t/pmc/exporter.t (revision 20643) +++ t/pmc/exporter.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -293,7 +293,7 @@ load_bytecode 'Test/More.pir' .local pmc exporter, src - src = get_namespace ['Test::More'] + src = get_namespace [ 'Test'; 'More' ] exporter = new .Exporter exporter.'import'( src :named('source'), 'plan ok' :named('globals') ) @@ -311,7 +311,7 @@ load_bytecode 'Test/More.pir' .local pmc exporter, src - src = get_namespace ['Test::More'] + src = get_namespace [ 'Test'; 'More' ] exporter = new .Exporter exporter.'source'( src ) @@ -330,7 +330,7 @@ load_bytecode 'Test/More.pir' .local pmc exporter, src, globals - src = get_namespace ['Test::More'] + src = get_namespace [ 'Test'; 'More' ] globals = new .ResizableStringArray globals = push 'ok' globals = push 'plan' @@ -352,7 +352,7 @@ .local pmc exporter, src, globals, nul nul = new .Null - src = get_namespace ['Test::More'] + src = get_namespace [ 'Test'; 'More' ] globals = new .Hash globals['ok'] = nul globals['plan'] = '' @@ -373,7 +373,7 @@ load_bytecode 'Test/More.pir' .local pmc exporter, src, globals - src = get_namespace ['Test::More'] + src = get_namespace [ 'Test'; 'More' ] globals = new .Hash globals['plan'] = 'consilium' globals['ok'] = 'rectus' @@ -394,7 +394,7 @@ load_bytecode 'Test/More.pir' .local pmc exporter, src, dest, globals - src = get_namespace ['Test::More'] + src = get_namespace [ 'Test'; 'More' ] dest = get_namespace ['foo'] globals = new .ResizableStringArray globals = push 'ok' === t/pmc/pointer.t ================================================================== --- t/pmc/pointer.t (revision 20643) +++ t/pmc/pointer.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/bound_nci.t ================================================================== --- t/pmc/bound_nci.t (revision 20643) +++ t/pmc/bound_nci.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/pmc/multisub.t ================================================================== --- t/pmc/multisub.t (revision 20643) +++ t/pmc/multisub.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -22,7 +22,7 @@ .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan ok is" test_namespace.export_to(curr_namespace, exports) === t/pmc/resizablestringarray.t ================================================================== --- t/pmc/resizablestringarray.t (revision 20643) +++ t/pmc/resizablestringarray.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -6,7 +6,7 @@ load_bytecode 'library/Test/More.pir' .local pmc plan - plan = get_hll_global ['Test::More'], 'plan' + plan = get_hll_global [ 'Test'; 'More' ], 'plan' # set a test plan plan(NUM_OF_TESTS) @@ -61,8 +61,8 @@ # .sub 'size/resize' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -117,8 +117,8 @@ # .sub 'set_pmc_keyed' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array, elem array = new 'ResizableStringArray' @@ -192,8 +192,8 @@ # .sub 'get_pmc_keyed' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -266,8 +266,8 @@ # .sub 'set_string_keyed' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array .local string elem @@ -341,8 +341,8 @@ # .sub 'get_string_keyed' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -400,8 +400,8 @@ # .sub 'set_integer_keyed' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array .local int elem @@ -475,8 +475,8 @@ # .sub 'get_integer_keyed' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -534,8 +534,8 @@ # .sub 'set_number_keyed' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array .local float elem @@ -609,8 +609,8 @@ # .sub 'get_number_keyed' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -668,7 +668,7 @@ # .sub 'push_pmc' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -704,7 +704,7 @@ # .sub 'push_string' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -736,7 +736,7 @@ # .sub 'push_integer' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -768,7 +768,7 @@ # .sub 'push_float' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -796,8 +796,8 @@ .sub 'pop_pmc' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -825,8 +825,8 @@ .sub 'pop_string' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -851,8 +851,8 @@ .sub 'pop_integer' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -877,8 +877,8 @@ .sub 'pop_float' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -903,8 +903,8 @@ .sub 'shift_pmc' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -933,8 +933,8 @@ .sub 'shift_string' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -960,8 +960,8 @@ .sub 'shift_integer' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -987,8 +987,8 @@ .sub 'shift_float' .local pmc is, ok - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -1017,7 +1017,7 @@ # .sub 'unshift_pmc' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -1053,7 +1053,7 @@ # .sub 'unshift_string' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -1085,7 +1085,7 @@ # .sub 'unshift_integer' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -1118,7 +1118,7 @@ # .sub 'unshift_float' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -1149,8 +1149,8 @@ # .sub 'clone' .local pmc is, is_deeply - is = get_hll_global ['Test::More'], 'is' - is_deeply = get_hll_global ['Test::More'], 'is_deeply' + is = get_hll_global [ 'Test'; 'More' ], 'is' + is_deeply = get_hll_global [ 'Test'; 'More' ], 'is_deeply' .local pmc array array = new 'ResizableStringArray' @@ -1173,7 +1173,7 @@ .sub 'get_string' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizablePMCArray' @@ -1187,7 +1187,7 @@ .sub 'does' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local pmc array array = new 'ResizableStringArray' @@ -1205,7 +1205,7 @@ # .sub sparse .local pmc ok - ok = get_hll_global ['Test::More'], 'ok' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' .local pmc array array = new 'ResizableStringArray' @@ -1291,8 +1291,8 @@ .sub 'splice' .local pmc is, like - is = get_hll_global ['Test::More'], 'is' - like = get_hll_global ['Test::More'], 'like' + is = get_hll_global [ 'Test'; 'More' ], 'is' + like = get_hll_global [ 'Test'; 'More' ], 'like' $P1 = new 'ResizableStringArray' $P1 = 3 === t/pmc/compiler.t ================================================================== --- t/pmc/compiler.t (revision 20643) +++ t/pmc/compiler.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/library/cgi_query_hash.t ================================================================== --- t/library/cgi_query_hash.t (revision 20643) +++ t/library/cgi_query_hash.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,9 +23,9 @@ load_bytecode 'CGI/QueryHash.pbc' .local pmc plan, is, ok - plan = get_hll_global ['Test::More'], 'plan' - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + plan = get_hll_global [ 'Test'; 'More' ], 'plan' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' plan(7) === t/library/mime_base64.t ================================================================== --- t/library/mime_base64.t (revision 20643) +++ t/library/mime_base64.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -27,9 +27,9 @@ load_bytecode 'compilers/json/JSON.pbc' .local pmc plan, is, ok - plan = get_hll_global ['Test::More'], 'plan' - is = get_hll_global ['Test::More'], 'is' - ok = get_hll_global ['Test::More'], 'ok' + plan = get_hll_global [ 'Test'; 'More' ], 'plan' + is = get_hll_global [ 'Test'; 'More' ], 'is' + ok = get_hll_global [ 'Test'; 'More' ], 'ok' plan(550) @@ -377,7 +377,7 @@ enc_sub = get_global [ "MIME"; "Base64" ], 'encode_base64' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local string result_encode result_encode = enc_sub( plain ) @@ -397,7 +397,7 @@ eight_to_six = get_global 'eight_to_six' .local pmc is - is = get_hll_global ['Test::More'], 'is' + is = get_hll_global [ 'Test'; 'More' ], 'is' .local string result_decode result_decode = dec_sub( base64 ) === t/library/range.t ================================================================== --- t/library/range.t (revision 20643) +++ t/library/range.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === t/library/test_more.t ================================================================== --- t/library/test_more.t (revision 20643) +++ t/library/test_more.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -15,7 +15,7 @@ .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "ok is diag like skip todo is_deeply isa_ok" test_namespace.export_to(curr_namespace, exports) === t/library/iter.t ================================================================== --- t/library/iter.t (revision 20643) +++ t/library/iter.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -18,7 +18,7 @@ import: .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan ok is diag" test_namespace.export_to(curr_namespace, exports) === t/pdd15oo/test_more.t ================================================================== --- t/pdd15oo/test_more.t (revision 20643) +++ t/pdd15oo/test_more.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -12,7 +12,7 @@ .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "ok is diag like skip todo is_deeply isa_ok" test_namespace.export_to(curr_namespace, exports) === t/oo/metamodel.t ================================================================== --- t/oo/metamodel.t (revision 20643) +++ t/oo/metamodel.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -21,7 +21,7 @@ .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan ok is isa_ok skip todo" test_namespace.export_to(curr_namespace, exports) === t/op/cmp-nonbranch.t ================================================================== --- t/op/cmp-nonbranch.t (revision 20643) +++ t/op/cmp-nonbranch.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -49,7 +49,7 @@ .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan is" test_namespace.export_to(curr_namespace, exports) === t/op/info.t ================================================================== --- t/op/info.t (revision 20643) +++ t/op/info.t (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -23,7 +23,7 @@ # get the testing functions .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan diag ok is is_deeply like isa_ok" test_namespace."export_to"(curr_namespace, exports) === languages/pheme/lib/PhemeTest.pir ================================================================== --- languages/pheme/lib/PhemeTest.pir (revision 20643) +++ languages/pheme/lib/PhemeTest.pir (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -1,4 +1,4 @@ -.namespace[ 'Test::More' ] +.namespace[ 'Test'; 'More' ] .sub is :multi( [ 'Pheme'; 'Cons' ], [ 'Pheme'; 'Cons' ] ) .param pmc l_cons === examples/tutorial/90_writing_tests.pir ================================================================== --- examples/tutorial/90_writing_tests.pir (revision 20643) +++ examples/tutorial/90_writing_tests.pir (patch rt44663-cage-test-more-namespace-to-keys level 1) @@ -3,7 +3,7 @@ .local pmc exports, curr_namespace, test_namespace curr_namespace = get_namespace - test_namespace = get_namespace [ "Test::More" ] + test_namespace = get_namespace [ 'Test'; 'More' ] exports = split " ", "plan ok is isa_ok skip todo" test_namespace.export_to(curr_namespace, exports) ==== BEGIN SVK PATCH BLOCK ==== Version: svk 1.08 (linux) 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 ==== END SVK PATCH BLOCK ====