[svn:parrot] r46465 - trunk/t/oo

bacek at svn.parrot.org bacek at svn.parrot.org
Mon May 10 09:13:23 UTC 2010


Author: bacek
Date: Mon May 10 09:13:22 2010
New Revision: 46465
URL: https://trac.parrot.org/parrot/changeset/46465

Log:
Uncomment proper todo test for TT #1619 and instanly claim it as done.

Modified:
   trunk/t/oo/metamodel.t

Modified: trunk/t/oo/metamodel.t
==============================================================================
--- trunk/t/oo/metamodel.t	Mon May 10 07:41:00 2010	(r46464)
+++ trunk/t/oo/metamodel.t	Mon May 10 09:13:22 2010	(r46465)
@@ -17,13 +17,7 @@
 =cut
 
 .sub _main :main
-    load_bytecode 'Test/More.pbc'
-
-    .local pmc exports, curr_namespace, test_namespace
-    curr_namespace = get_namespace
-    test_namespace = get_namespace [ 'Test'; 'More' ]
-    exports = split " ", "plan ok is isa_ok skip todo"
-    test_namespace.'export_to'(curr_namespace, exports)
+    .include 'test_more.pir'
 
     plan( 12 )
 
@@ -85,10 +79,9 @@
     fail("no attribute")
 NEXT:
 
-    todo(0, "new opcode makes working objects", "not implemented: TT #1619")
-#    $P0 = new "Dog"
-#    $I0 = defined $P0
-#    isa_ok($P0, "Dog", "new opcode makes working objects")
+    $P0 = new "Dog"
+    $I0 = defined $P0
+    isa_ok($P0, "Dog", "new opcode makes working objects")
 
 .end
 


More information about the parrot-commits mailing list