tracks/perl6/exercises/rna-transcription/rna-transcription.t in trackler-2.2.1.49 vs tracks/perl6/exercises/rna-transcription/rna-transcription.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) <&to-rna>; -my $c-data; +my $c-data = from-json $=pod.pop.contents; for @($c-data<cases>) { if .<expected> { is .<dna>.&to-rna, |.<expected description>; } else { throws-like {.<dna>.&to-rna}, Exception; } } -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": "rna-transcription", "version": "1.0.1", "comments": [ "Language implementations vary on the issue of invalid input data.", @@ -111,9 +98,21 @@ "expected": null } ] } -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> }