<?php
/**
* @package Spot
* @link http://spot.os.ly
*/
class Test_Config extends PHPUnit_Framework_TestCase
{
protected $backupGlobals = false;
public function testAddConnectionWithDSNString()
{
$cfg = new \Spot\Config();
$adapter = $cfg->addConnection('test_mysql', 'mysql://test:hide@address.com/test');
$this->assertTrue($adapter instanceof \Spot\Adapter\Mysql);
}
}