2 # Copyright (C) 2007-2010, Parrot Foundation.
7 t/oo/names.t - Test OO name-related items
15 Tests OO features related to names and namespaces.
24 .include 'test_more.pir'
28 hll_object_different_than_parrot_name()
29 hll_object_same_as_parrot_name()
32 .sub hll_object_different_than_parrot_name
35 $P0.'name'('AnObject')
37 is ($S0, 'AnObject','HLL obj w/ name different than parrot obj created')
40 .sub hll_object_same_as_parrot_name
47 ok (1, 'HLL obj created w/ same name as parrot obj')
50 ok (0, 'HLL obj w/ same name as parrot obj not created')
57 # vim: expandtab shiftwidth=4 ft=pir: