The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/pugs

use v6;
use Test;

plan 11;

use Test::Builder::Test;

my $skip_test = Test::Builder::Test::Skip.new(
    number      => 1,     
    passed      => 1,
    description => 'first test description',
    reason      => 'reason for skipping'
);

is( $skip_test.ref, 'Test::Builder::Test::Skip',
    'new() should return a Test::Builder::Test::Skip instance' );

is( $skip_test.number(), 1, 'number() should return the test number', :todo<bug> );
ok( $skip_test.passed(), 'passed() should return the passed value', :todo<bug> );
is( $skip_test.description(), 'first test description',
    'description() should return the test description', :todo<bug> );
is( $skip_test.diagnostic(), '???',
    'diagnostic() should return the default diagnostic if needed' );

my $skip_diag = Test::Builder::Test::Skip.new(
    number      => 1,     
    passed      => 1,
    reason      => 'reason for skipping',
    diagnostic  => 'some diagnostic message',
    description => 'first test description',
);

is( $skip_diag.diagnostic(), 'some diagnostic message',
    '... but should return diagnostic if set', :todo<bug> );

is( $skip_test.reason(), 'reason for skipping',
    'reason() should return the test reason', :todo<bug> );

is( $skip_test.report(), 'not ok 1 #skip reason for skipping',
    'report() should return a TAP-formatted skip message', :todo<bug> );

my %status = $skip_test.status();

is( +( keys %status ), 4, 'status() should return a hash')
is( %status<passed>,   1, '... with a passed key set to true', :todo<bug>);
is( %status<skip>,     1, '... a skip key set to true'                 );

is( %status<reason>,      'reason for skipping', '... the skip reason', :todo<bug> );
is( %status<description>, 'first test description',
    '... and the correct test description', :todo<bug>);