• Home
  • Raw
  • Download

Lines Matching refs:shouldBe

8 shouldBe("select1.options.remove(value)", "undefined");
9 shouldBe("select1.options.length", "0");
10 shouldBe("select1.selectedIndex", "-1");
15 shouldBe("select1.options.remove(value)", "undefined");
16 shouldBe("select1.options.length", "0");
17 shouldBe("select1.selectedIndex", "-1");
22 shouldBe("select1.options.remove(value)", "undefined");
23 shouldBe("select1.options.length", "0");
24 shouldBe("select1.selectedIndex", "-1");
29 shouldBe("select1.options.remove(value)", "undefined");
30 shouldBe("select1.options.length", "0");
31 shouldBe("select1.selectedIndex", "-1");
36 shouldBe("select1.options.remove(value)", "undefined");
37 shouldBe("select1.options.length", "0");
38 shouldBe("select1.selectedIndex", "-1");
43 shouldBe("select1.options.remove(value)", "undefined");
44 shouldBe("select1.options.length", "0");
45 shouldBe("select1.selectedIndex", "-1");
50 shouldBe("select1.options.remove(value)", "undefined");
51 shouldBe("select1.options.length", "0");
52 shouldBe("select1.selectedIndex", "-1");
57 shouldBe("select1.options.remove(value)", "undefined");
58 shouldBe("select1.options.length", "0");
59 shouldBe("select1.selectedIndex", "-1");
64 shouldBe("select1.options.remove(value)", "undefined");
65 shouldBe("select1.options.length", "0");
66 shouldBe("select1.selectedIndex", "-1");
70 shouldBe("select1.options.remove()", "undefined");
71 shouldBe("select1.options.length", "0");
72 shouldBe("select1.selectedIndex", "-1");
76 shouldBe("select1.options.remove(0, 'foo')", "undefined");
77 shouldBe("select1.options.length", "0");
78 shouldBe("select1.selectedIndex", "-1");
82 shouldBe("select1.options.remove(-2)", "undefined");
83 shouldBe("select1.options.length", "0");
84 shouldBe("select1.selectedIndex", "-1");
88 shouldBe("select1.options.remove(-1)", "undefined");
89 shouldBe("select1.options.length", "0");
90 shouldBe("select1.selectedIndex", "-1");
94 shouldBe("select1.options.remove(0)", "undefined");
95 shouldBe("select1.options.length", "0");
96 shouldBe("select1.selectedIndex", "-1");
100 shouldBe("select1.options.remove(1)", "undefined");
101 shouldBe("select1.options.length", "0");
102 shouldBe("select1.selectedIndex", "-1");
112 shouldBe("select2.options.remove(value)", "undefined");
113 shouldBe("select2.options.length", "15");
114 shouldBe("select2.selectedIndex", "13");
115 shouldBe("select2.options[0].value", "'B'");
120 shouldBe("select2.options.remove(value)", "undefined");
121 shouldBe("select2.options.length", "14");
122 shouldBe("select2.selectedIndex", "12");
123 shouldBe("select2.options[0].value", "'C'");
128 shouldBe("select2.options.remove(value)", "undefined");
129 shouldBe("select2.options.length", "13");
130 shouldBe("select2.selectedIndex", "11");
131 shouldBe("select2.options[3].value", "'G'");
136 shouldBe("select2.options.remove(value)", "undefined");
137 shouldBe("select2.options.length", "12");
138 shouldBe("select2.selectedIndex", "10");
139 shouldBe("select2.options[1].value", "'E'");
144 shouldBe("select2.options.remove(value)", "undefined");
145 shouldBe("select2.options.length", "11");
146 shouldBe("select2.selectedIndex", "9");
147 shouldBe("select2.options[1].value", "'G'");
152 shouldBe("select2.options.remove(value)", "undefined");
153 shouldBe("select2.options.length", "10");
154 shouldBe("select2.selectedIndex", "8");
155 shouldBe("select2.options[0].value", "'G'");
160 shouldBe("select2.options.remove(value)", "undefined");
161 shouldBe("select2.options.length", "9");
162 shouldBe("select2.selectedIndex", "7");
163 shouldBe("select2.options[0].value", "'H'");
168 shouldBe("select2.options.remove(value)", "undefined");
169 shouldBe("select2.options.length", "8");
170 shouldBe("select2.selectedIndex", "6");
171 shouldBe("select2.options[0].value", "'I'");
176 shouldBe("select2.options.remove(value)", "undefined");
177 shouldBe("select2.options.length", "7");
178 shouldBe("select2.selectedIndex", "5");
179 shouldBe("select2.options[0].value", "'J'");
184 shouldBe("select2.options.remove(value)", "undefined");
185 shouldBe("select2.options.length", "6");
186 shouldBe("select2.selectedIndex", "4");
187 shouldBe("select2.options[0].value", "'K'");
191 shouldBe("select2.options.remove()", "undefined");
192 shouldBe("select2.options.length", "5");
193 shouldBe("select2.selectedIndex", "3");
194 shouldBe("select2.options[0].value", "'L'");
198 shouldBe("select2.options.remove(0, 'foo')", "undefined");
199 shouldBe("select2.options.length", "4");
200 shouldBe("select2.selectedIndex", "2");
201 shouldBe("select2.options[0].value", "'M'");
205 shouldBe("select2.options.remove(-2)", "undefined");
206 shouldBe("select2.options.length", "4");
207 shouldBe("select2.selectedIndex", "2");
208 shouldBe("select2.options[2].value", "'O'");
212 shouldBe("select2.options.remove(-1)", "undefined");
213 shouldBe("select2.options.length", "4");
214 shouldBe("select2.selectedIndex", "2");
215 shouldBe("select2.options[3].value", "'P'");
219 shouldBe("select2.options.remove(0)", "undefined");
220 shouldBe("select2.options.length", "3");
221 shouldBe("select2.selectedIndex", "1");
222 shouldBe("select2.options[0].value", "'N'");
226 shouldBe("select2.options.remove(1)", "undefined");
227 shouldBe("select2.options.length", "2");
228 shouldBe("select2.selectedIndex", "0");
229 shouldBe("select2.options[1].value", "'P'");