Pheasant\Tests\DsnTest::testBuildingADsnWithoutDb PHP Method

testBuildingADsnWithoutDb() public method

    public function testBuildingADsnWithoutDb()
    {
        $dsn = new Dsn("mysqli://user:pass@hostname:3306");
        $this->assertFalse(isset($dsn->database));
        $this->assertEquals($dsn->__toString(), 'mysqli://user:pass@hostname:3306');
    }