Lines Matching full:testforwardslash
35 PASS testForwardSlash("^/$", "/"); is true
36 PASS testForwardSlash("^/$", "/"); is true
37 PASS testForwardSlash("^\/$", "/"); is true
38 PASS testForwardSlash("^\\/$", "\/"); is true
39 PASS testForwardSlash("^\\\/$", "\/"); is true
40 FAIL testForwardSlash("^\\\\/$", "\\/"); should be true. Threw exception SyntaxError: Invalid regular expression flags
41 FAIL testForwardSlash("^\\\\\/$", "\\/"); should be true. Threw exception SyntaxError: Invalid regular expression flags
42 PASS testForwardSlash("x/x/x", "x\/x\/x"); is true
43 PASS testForwardSlash("x\/x/x", "x\/x\/x"); is true
44 PASS testForwardSlash("x/x\/x", "x\/x\/x"); is true
45 PASS testForwardSlash("x\/x\/x", "x\/x\/x"); is true