lumen-generators/lumen-test/tests/acceptance/ControllerRestActionsCommandCept.php

10 lines
425 B
PHP
Raw Normal View History

<?php
$I = new AcceptanceTester($scenario);
$I->wantTo('generate the REST actions trait');
$I->runShellCommand('php artisan wn:controller:rest-actions');
$I->seeInShellOutput('REST actions trait generated');
$I->seeFileFound('./app/Http/Controllers/RESTActions.php');
$I->openFile('./app/Http/Controllers/RESTActions.php');
$I->seeInThisFile('trait RESTActions {');
2015-09-24 05:04:44 +03:00
$I->deleteFile('./app/Http/Controllers/RESTActions.php');