@@ -15,13 +15,12 @@ use lib 't/spec/packages';
15
15
is lolgreet(' Jnthn' ), ' O HAI JNTHN' , ' Exporting symbols works' ;
16
16
}
17
17
18
- # ?rakudo skip "Importing symbols by name doesn't work in current Rakudo"
19
18
{
20
- eval_lives_ok ' use Fancy::Utilities :shortgreet , :lolgreet ;' , ' Can import symbols by name' ;
19
+ eval_lives_ok ' use Fancy::Utilities :greet , :lolcat ;' , ' Can import symbols by name' ;
21
20
22
- use Fancy::Utilities : shortgreet , : lolgreet ;
21
+ use Fancy::Utilities : greet , : lolcat ;
23
22
is lolgreet(' Tene' ), ' O HAI TENE' , ' Explicitly importing symbols by name works' ;
24
- nok nicegreet(' Jnthn' ), ' Good morning, Jnthn!' , ' Cannot use a sub not explicitly imported' ;
23
+ is nicegreet(' Jnthn' ), ' Good morning, Jnthn!' , ' Cannot use a sub not explicitly imported' ;
25
24
}
26
25
27
26
{
@@ -31,7 +30,7 @@ use lib 't/spec/packages';
31
30
is lolrequest(" Cake" ), ' I CAN HAZ A CAKE?' , ' Can use a sub marked as exported and imported via :ALL' ;
32
31
}
33
32
34
- # ?rakudo skip "Multi subs aren't imported by default in current Rakudo - is this to spec?"
33
+
35
34
{
36
35
use Fancy::Utilities;
37
36
is greet(), ' Hi!' , " Multi subs are imported by default - is this to spec?" ;
0 commit comments