Pheasant\Tests\ResultSetTestCase::testGettingAColumn PHP Method

testGettingAColumn() public method

public testGettingAColumn ( )
    public function testGettingAColumn()
    {
        $rs = $this->connection()->execute('SELECT name,value,active FROM user');
        $this->assertEquals(iterator_to_array($rs->column()), array('Llama', 'Drama'));
    }