Пример #1
0
 public function test_check_if_a_category_can_be_persisted()
 {
     $category = Category::create(['name' => 'Category test', 'active' => true]);
     $this->assertEquals('Category test', $category->name);
     $category = Category::all()->first();
     $this->assertEquals('Category test', $category->name);
 }