initial commit
This commit is contained in:
28
tests/functional/laravel5/TuneAttributeCest.php
Normal file
28
tests/functional/laravel5/TuneAttributeCest.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
namespace laravel5;
|
||||
|
||||
use \FunctionalTester;
|
||||
use XaiCorp\AbcParser\Models\Laravel5\TuneAttribute;
|
||||
|
||||
class TuneAttributeCest
|
||||
{
|
||||
public function _before(FunctionalTester $I)
|
||||
{
|
||||
}
|
||||
|
||||
public function _after(FunctionalTester $I)
|
||||
{
|
||||
}
|
||||
|
||||
// tests: trying to...
|
||||
public function saveModel(FunctionalTester $I)
|
||||
{
|
||||
$model = new TuneAttribute();
|
||||
|
||||
$model->tune_id = 1;
|
||||
$model->type = 'Title';
|
||||
$model->string = 'a title';
|
||||
$model->ordering = 1;
|
||||
$I->assertCanSave($model);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user