我有兩個模型,Project和Todo。 項目存儲Todos數組。 移民項目: def up
create_table :projects do |t|
t.string :title, null: false
t.timestamps null: false
end
end
移民TODO: def up
create_table
我使用Codeception爲我的Yii2應用程序寫了一個簡單的測試。而不是使用真正的MySQL數據庫,我想使用燈具。 下面是代碼: 測試/ PersonTest.php: namespace app\tests\unit\models;
use tests\fixtures;
use app\controllers;
class PersonTest extends \Codecept