Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
:D now works in rakudo.jvm, unfudge
  • Loading branch information
coke committed Jan 15, 2015
1 parent 7cbffe8 commit ef44fab
Show file tree
Hide file tree
Showing 24 changed files with 0 additions and 24 deletions.
1 change: 0 additions & 1 deletion S17-supply/delay.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 13;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.delay(1) }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/do.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 5;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.do({...}) }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/elems.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 5;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.elems }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/flat.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 17;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.flat }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/for.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 13;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.new.for(1..10) }, 'can not be called as an instance method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/grep.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 7;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.grep({...}) }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/interval.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 3;

#?rakudo.jvm todo 'QAST::ParamTypeCheck needs to be implemented on jvm'
dies_ok { Supply.new.interval(1) }, 'can not be called as an instance method';

{
Expand Down
1 change: 0 additions & 1 deletion S17-supply/last.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 9;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.last }, 'can not be called as a class method';
#?rakudo todo "we don't have Natural numbers yet"
dies_ok { Supply.new.last(0) }, 'cannot have 0 last';
Expand Down
1 change: 0 additions & 1 deletion S17-supply/lines.t
Expand Up @@ -10,7 +10,6 @@ my @endings = "\n", "\r", "\r\n";

plan 21;

#?rakudo.jvm todo "?"
dies_ok { Supply.lines }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/map.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 9;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.map({...}) }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/max.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 10;

#?rakudo.jvm todo 'QAST::ParamTypeCheck needs to be implemented on jvm'
dies_ok { Supply.max }, 'can not be called as a class method';
dies_ok { Supply.new.max(23) }, 'must be code if specified';

Expand Down
1 change: 0 additions & 1 deletion S17-supply/migrate.t
Expand Up @@ -3,7 +3,6 @@ use v6;
use Test;
plan 21;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.migrate }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/min.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 10;

#?rakudo.jvm todo 'QAST::ParamTypeCheck needs to be implemented on jvm'
dies_ok { Supply.min }, 'can not be called as a class method';
dies_ok { Supply.new.min(23) }, 'must be code if specified';

Expand Down
1 change: 0 additions & 1 deletion S17-supply/minmax.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 10;

#?rakudo.jvm todo 'QAST::ParamTypeCheck needs to be implemented on jvm'
dies_ok { Supply.minmax }, 'can not be called as a class method';
dies_ok { Supply.new.minmax(23) }, 'must be code if specified';

Expand Down
1 change: 0 additions & 1 deletion S17-supply/reduce.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 10;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.reduce( {...} ) }, 'can not be called as a class method';
dies_ok { Supply.new.reduce(23) }, 'must be code if specified';

Expand Down
1 change: 0 additions & 1 deletion S17-supply/reverse.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 3;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.reverse }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/rotor.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 9;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.rotor }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/schedule_on.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 7;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.schedule_on($*SCHEDULER) },
'can not be called as a class method';

Expand Down
1 change: 0 additions & 1 deletion S17-supply/sort.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 7;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.sort }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/squish.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 11;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.squish }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/stable.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 7;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.stable(1) }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/start.t
Expand Up @@ -4,7 +4,6 @@ use Test;

plan 9;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.start({...}) }, 'can not be called as a class method';

{
Expand Down
1 change: 0 additions & 1 deletion S17-supply/unique.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 17;

#?rakudo.jvm todo "D: doesn't work in signatures RT #122229"
dies_ok { Supply.unique }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down
1 change: 0 additions & 1 deletion S17-supply/words.t
Expand Up @@ -6,7 +6,6 @@ use Test::Tap;

plan 5;

#?rakudo.jvm todo "?"
dies_ok { Supply.words }, 'can not be called as a class method';

for ThreadPoolScheduler.new, CurrentThreadScheduler -> $*SCHEDULER {
Expand Down

0 comments on commit ef44fab

Please sign in to comment.