aboutsummaryrefslogtreecommitdiffstats
path: root/spec/relations/table_relation_spec.rb
blob: dd86f83294e2df69ee220e50de3a646101c81c54 (plain) (blame)
1
2
3
4
5
6
7
require File.join(File.dirname(__FILE__), '..', 'spec_helper')

describe TableRelation, '#to_sql' do
  it "returns a simple SELECT query" do
    TableRelation.new(:users).to_sql.should == Select.new(:*).from(:users)
  end
end