diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-17T10·18+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-17T10·18+0200 |
commit | f134fc4cbecc258771272c2418af3b92ade88f80 (patch) | |
tree | 0a8cdaae65c921624211f20f393f4acdd9a046c4 /tests/lang | |
parent | e46090edb101acac20ab1e6260a0ba98c177206a (diff) |
Document that builtins.match takes a POSIX extended RE
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/eval-okay-regex-match.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-regex-match.nix b/tests/lang/eval-okay-regex-match.nix index ae6501532d11..273e2590713e 100644 --- a/tests/lang/eval-okay-regex-match.nix +++ b/tests/lang/eval-okay-regex-match.nix @@ -17,8 +17,11 @@ assert matches "fo+" "foo"; assert matches "fo{1,2}" "foo"; assert !matches "fo{1,2}" "fooo"; assert !matches "fo*" "foobar"; +assert matches "[[:space:]]+([^[:space:]]+)[[:space:]]+" " foo "; +assert !matches "[[:space:]]+([[:upper:]]+)[[:space:]]+" " foo "; assert match "(.*)\\.nix" "foobar.nix" == [ "foobar" ]; +assert match "[[:space:]]+([[:upper:]]+)[[:space:]]+" " FOO " == [ "FOO" ]; assert splitFN "/path/to/foobar.nix" == [ "/path/to/" "/path/to" "foobar" "nix" ]; assert splitFN "foobar.cc" == [ null null "foobar" "cc" ]; |