Lines Matching +full:- +full:eq

9         $this->pluginsEnabled[] = 'const';
10 $this->pluginsEnabled[] = 'include';
11 $this->_createPages();
17 $response = $request->get(array('id' => 'test:plugin_const:start'), '/doku.php');
19 … $first_sec = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(0)->attr('value');
20 … $second_sec = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(1)->attr('value');
21 … $third_sec = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(2)->attr('value');
23 $this->assertEquals('57-87', $first_sec);
24 $this->assertEquals('88-118', $second_sec);
25 $this->assertEquals('119-', $third_sec);
30 $response = $request->get(array('id' => 'test:plugin_const:include'), '/doku.php');
34 … $section[] = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(0)->attr('value');
35 … $section[] = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(1)->attr('value');
36 … $section[] = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(2)->attr('value');
37 … $section[] = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(3)->attr('value');
38 … $section[] = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(4)->attr('value');
39 … $section[] = $response->queryHTML('form.btn_secedit input[name="range"]')->eq(5)->attr('value');
41 $this->assertEquals('71-101', $section[0]);
42 $this->assertEquals('57-87', $section[1]);
43 $this->assertEquals('88-118', $section[2]);
44 $this->assertEquals('119-', $section[3]);
45 $this->assertEquals('102-141', $section[4]);
46 $this->assertEquals('142-', $section[5]);