File: no_import.t

package info (click to toggle)
libsyntax-keyword-junction-perl 0.003008-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 196 kB
  • ctags: 81
  • sloc: perl: 718; makefile: 7
file content (9 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
use strict;
use Test::More tests => 4;

use Syntax::Keyword::Junction;

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