- or download this
# Test::Simple or Test::More
ok($var eq 'a' || $var eq 'b', "test name");
- or download this
# Test::Simple or Test::More
ok((map { $_ eq 'a' || $_ eq 'b' } $var), "test name");
- or download this
# Test::More
like($var, qr/^(?:a|b)\z/, "test name");