We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8cf51c commit dbe034bCopy full SHA for dbe034b
S12-class/type-object.t
@@ -0,0 +1,13 @@
1
+use v6;
2
+use Test;
3
+
4
+plan 5;
5
6
+is Any.Str, '', 'Any.Str is empty string';
7
+is Any.Stringy, '', 'Any.Str is empty string';
8
+is Any.gist, 'Any()', 'Any.gist has those parens';
9
10
+# maybe a bit too retrictive?
11
+is Any.perl, 'Any', 'Any.perl does not have parens';
12
13
+is Any.^name, 'Any', '.^name'
0 commit comments