8 lines
133 B
PHP
8 lines
133 B
PHP
|
<?php
|
||
|
|
||
|
it('has owned/create page', function () {
|
||
|
$response = $this->get('/owned/create');
|
||
|
|
||
|
$response->assertStatus(200);
|
||
|
});
|