Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests for RT#127085. #150

Merged
merged 1 commit into from Sep 2, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 9 additions & 3 deletions S26-documentation/09-configuration.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 17;
plan 18;
my $r;

=begin pod
Expand Down Expand Up @@ -28,11 +28,17 @@ is $r.config<formatted>, 'I';

$r = $=pod[2].contents[0];
is $r.config<number>, 42;
#?rakudo todo 'non-string colonpair pod options RT #124281'

# RT#127085
{
isa-ok $r.config<zebras>, Bool;
isa-ok $r.config<sheep>, Bool;
is $r.config<zebras>, True;
is $r.config<sheep>, False;
isa-ok $r.config<sheep>, Bool;
}

#?rakudo todo 'non-string colonpair pod options RT #124281'
{
isa-ok $r.config<feist>, List;
}

Expand Down