/** @test */ public function it_can_delete_a_module() { $this->artisan('module:make', ['name' => ['Blog']]); $this->repository->delete('Blog'); $this->assertFalse(is_dir(base_path('modules/Blog'))); }