| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | public function testScriptRetrieval() |
||
| 6 | { |
||
| 7 | $response = $this->call('GET', '/js-localization/localization.js'); |
||
| 8 | |||
| 9 | $this->assertTrue($response->isOk()); |
||
| 10 | $content = $response->getContent(); |
||
| 11 | |||
| 12 | // Test for JS content |
||
| 13 | |||
| 14 | $this->assertRegExp('/^!?\(?function\(.*\);/', $content); |
||
| 15 | } |
||
| 16 | |||
| 38 | } |