tracks/perl6/exercises/phone-number/phone-number.t in trackler-2.2.1.49 vs tracks/perl6/exercises/phone-number/phone-number.t in trackler-2.2.1.50

- old
+ new

@@ -19,35 +19,22 @@ bail-out 'Example version must match test version.' if %*ENV<EXERCISM>; } require ::($module) <&clean-number>; -my $c-data; +my $c-data = from-json $=pod.pop.contents; for @($c-data<cases>[0]<cases>) { if .<expected> { is clean-number(.<phrase>), |.<expected description>; } else { nok clean-number(.<phrase>), .<description>; } } -unless %*ENV<EXERCISM> { - skip-rest 'exercism tests'; - exit; -} +=head2 Canonical Data +=begin code -subtest 'canonical-data' => { - (my $c-data-file = "$dir/../../problem-specifications/exercises/{ - $dir.IO.resolve.basename - }/canonical-data.json".IO.resolve) ~~ :f ?? - is-deeply $c-data, EVAL('from-json $c-data-file.slurp'), 'match problem-specifications' !! - flunk 'problem-specifications file not found'; -} - -INIT { -$c-data := from-json q:to/END/; - { "exercise": "phone-number", "version": "1.2.0", "cases": [ { @@ -133,9 +120,21 @@ ] } ] } -END +=end code - $module = 'Example' if %*ENV<EXERCISM>; +unless %*ENV<EXERCISM> { + skip-rest 'exercism tests'; + exit; } + +subtest 'canonical-data' => { + (my $c-data-file = "$dir/../../problem-specifications/exercises/{ + $dir.IO.resolve.basename + }/canonical-data.json".IO.resolve) ~~ :f ?? + is-deeply $c-data, EVAL('from-json $c-data-file.slurp'), 'match problem-specifications' !! + flunk 'problem-specifications file not found'; +} + +INIT { $module = 'Example' if %*ENV<EXERCISM> }