File: 01in-stringy.t

package info (click to toggle)
libsyntax-operator-in-perl 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: perl: 201; makefile: 3
file content (46 lines) | stat: -rw-r--r-- 930 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/perl

use v5.14;
use warnings;

use Test2::V0;

use Syntax::Operator::In;
BEGIN { plan skip_all => "No PL_infix_plugin" unless XS::Parse::Infix::HAVE_PL_INFIX_PLUGIN; }

my $warnings = 0;
$SIG{__WARN__} = sub { $warnings++ };

## Circumfix notation

# List literals
ok(    "c" in<eq> ("a".."e") , 'c is in a..e');
ok(not("f" in<eq> ("a".."e")), 'f is not in a..e');

## Colon notation

# List literals
ok(    "c" in:eq ("a".."e") , 'c is in a..e');
ok(not("f" in:eq ("a".."e")), 'f is not in a..e');

# Arrays
my @AtoE = ("A" .. "E");
ok(    "C" in:eq @AtoE , 'C is in @AtoE');
ok(not("F" in:eq @AtoE), 'F is not in @AtoE');

# Function calls
sub XtoZ { return "X" .. "Z" }
ok("Y" in:eq XtoZ(), 'Y is in XtoZ()');

# unimport
{
   no Syntax::Operator::In;

   sub in { return "normal function" }

   is( in, "normal function", 'in() parses as a normal function call' );
}

ok(!$warnings, 'no warnings');

done_testing;