Nwidart\Modules\tests\SchemaParserTest::it_generates_migration_methods_for_down_method PHP Метод

it_generates_migration_methods_for_down_method() публичный Метод

    public function it_generates_migration_methods_for_down_method()
    {
        $parser = new SchemaParser('username:string, password:integer');
        $expected = <<<TEXT
\t\t\t\$table->dropColumn('username');
\t\t\t\$table->dropColumn('password');

TEXT;
        self::assertEquals($expected, $parser->down());
    }