Hi all,
I'm working on refactoring the perl6 spec test suite.
I have some doubts that probably some of you can clarify.
- Are smartlinks "stackable?"
That is, can I refer the same code to multiple links?
http://perlsix.org/svn/pugs/revision?rev=19471
- Is [1] the correct way of declaring "todo" tests?
What's the equivalent in new compiler directives
of `:todo<feature>', `:todo<bug>', and ':todo'?
- Does anyone know a way to install pugs additional
haskell packages on Win32? I mean pugs-hsregex
and friends. `pugs/configure' keeps complaining
about those.
Thanks!
[1] t/spec/S29-str/quotemeta.t
Index: quotemeta.t
===================================================================
--- quotemeta.t (revisione 19471)
+++ quotemeta.t (copia locale)
@@ -28,8 +28,10 @@
# For the moment I don't know how to handle the lack of Config.pm...
# Sorry for ebcdic users!
my %Config; # Empty means there's no 'ebcdic' key defined...
-is('Config.pm', 'available', 'Config.pm availability', :todo<feature>);
+#?pugs: todo('Test Config.pm availability', 1);
+is('Config.pm', 'available', 'Config.pm availability');
+
# L<S29/Str/quotemeta>
is(quotemeta("HeLLo World-72_1"), "HeLLo\\ World\\-72_1", "simple
quotemeta test");