xref: /openbsd-src/gnu/usr.bin/perl/t/lib/feature/nonesuch (revision 850e275390052b330d93020bf619a739a3c277ac)
1*850e2753SmillertTest that non-existent features fail as expected.
2*850e2753Smillert
3*850e2753Smillert__END__
4*850e2753Smillertuse feature "nonesuch";
5*850e2753SmillertEXPECT
6*850e2753SmillertOPTIONS regex
7*850e2753Smillert^Feature "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
8*850e2753Smillert########
9*850e2753Smillertno feature "nonesuch";
10*850e2753SmillertEXPECT
11*850e2753SmillertOPTIONS regex
12*850e2753Smillert^Feature "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
13*850e2753Smillert########
14*850e2753Smillertuse feature ":nonesuch";
15*850e2753SmillertEXPECT
16*850e2753SmillertOPTIONS regex
17*850e2753Smillert^Feature bundle "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
18*850e2753Smillert########
19*850e2753Smillertno feature ":nonesuch";
20*850e2753SmillertEXPECT
21*850e2753SmillertOPTIONS regex
22*850e2753Smillert^Feature bundle "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
23