HomeControllerTest.php 368 B

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