Nwidart\Modules\tests\Commands\PublishMigrationCommandTest::it_publishes_module_migrations PHP Méthode

it_publishes_module_migrations() public méthode

    public function it_publishes_module_migrations()
    {
        $this->artisan('module:publish-migration', ['module' => 'Blog']);
        $files = $this->finder->allFiles(base_path('database/migrations'));
        $this->assertCount(1, $files);
    }