vendor/doctrine-migrations/tests/Doctrine/DBAL/Migrations/Tests/Configuration/YamlConfigurationTest.php
author ymh <ymh.work@gmail.com>
Fri, 25 Nov 2011 18:55:43 +0100
changeset 39 03b14b0fe101
permissions -rw-r--r--
Documentation and add alternative wp url and label + migrations

<?php

namespace Doctrine\DBAL\Migrations\Tests\Configuration;

use Doctrine\DBAL\Migrations\Configuration\YamlConfiguration;

class YamlConfigurationTest extends AbstractConfigurationTest
{
    public function loadConfiguration()
    {
        $config = new YamlConfiguration($this->getSqliteConnection());
        $config->load(__DIR__ . "/_files/config.yml");

        return $config;
    }
}