require 'abstract_unit' require 'fixtures/topic' class TestColumnAlias < Test::Unit::TestCase def test_column_alias topic = Topic.find(1) records = topic.connection.select_all("SELECT id AS pk FROM topics LIMIT 1") assert_equal(records[0].keys[0], "pk") end end