File: no_import.t

package info (click to toggle)
libperl6-junction-perl 1.60000-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: perl: 593; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
use strict;
use Test::More tests => 4;

use Perl6::Junction;

ok( Perl6::Junction::all( 3, 3.0 ) == 3, '==' );
ok( Perl6::Junction::any( 2, 3.0 ) == 2, '==' );
ok( Perl6::Junction::none( 2, 3.0 ) == 4, '==' );
ok( Perl6::Junction::one( 2, 3 ) == 2, '==' );