Home | History | Annotate | Download | only in webkit

Lines Matching full:shouldbe

29 shouldBe("re.toString()", "'/a/i'");
32 shouldBe("re.multiline", "false");
33 shouldBe("re.ignoreCase", "false");
34 shouldBe("re.global", "false");
35 shouldBe("re.test('A')", "false");
36 shouldBe("re.toString()", "'/a/'");
39 shouldBe("re.toString()", "'/b/g'");
42 shouldBe("re.toString()", "'/c/'");
45 shouldBe("re.ignoreCase", "true");
46 shouldBe("re.test('C')", "true");
47 shouldBe("re.toString()", "'/c/i'");
53 shouldBe("re.toString()", "'/c/i'");
58 shouldBe("re.toString()", "'/undefined/'");
61 shouldBe("re.toString()", "'/null/'");
64 shouldBe("re.toString()", "'/(?:)/'");
67 shouldBe("re.toString()", "'/z/'");
72 shouldBe("re.lastIndex", "0");
74 shouldBe("re.lastIndex", "1");