1234567891011121314151617 |
- <?php
- // Copyright 2019 Hackware SpA <human@hackware.cl>
- // "Hackware Web Services Core" is released under the MIT License terms.
- namespace Hawese\Tests;
- class HomeControllerTest extends TestCase
- {
- public function testIndex()
- {
- $response = $this->request('GET', '/');
- $this->assertObjectHasAttribute('links', $response->getData());
- }
- }
|