| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function testHasEvents() |
||
| 10 | { |
||
| 11 | $client = static::createClient(); |
||
| 12 | |||
| 13 | $crawler = $client->request('GET', '/events/last'); |
||
| 14 | |||
| 15 | // Checking that we have events table |
||
| 16 | $this->assertEquals( |
||
| 17 | 1, |
||
| 18 | $crawler->filter('.last-subscriptions-log table')->count(), |
||
| 19 | 'Has no events table' |
||
| 20 | ); |
||
| 31 | } |