Help language development. Donate to The Perl Foundation

P5study zef:lizmat last updated on 2021-09-09

t/01-basic.t
use v6.*;
use Test;
use P5study;

plan 4;

ok defined(::('&study')),       'is &study imported?';
ok !defined(P5study::{'&study'}), 'is &study externally NOT accessible?';

lives-ok { study },    'do we handle a bare "study"';
lives-ok { study 42 }, 'do we handle a single arg "study"';

# vim: expandtab shiftwidth=4