1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/spec/attributes/header_spec.rb
2010-05-26 18:15:21 -04:00

42 lines
1.2 KiB
Ruby

require 'spec_helper'
module Arel
describe "Header" do
before :all do
@relation = Model.build do |r|
r.attribute :id, Attributes::Integer
r.attribute :name, Attributes::String
r.attribute :age, Attributes::Integer
end
@other = Model.build do |r|
r.attribute :foo, Attributes::String
end
@subset = Model.build do |r|
r.attribute :id, Attributes::Integer
end
end
describe "attribute lookup" do
it "finds attributes by name" do
@relation.attributes[:name].should == Attributes::String.new(@relation, :name)
end
it "returns nil if no attribute is found" do
@relation.attributes[:does_not_exist].should be_nil
@relation[:does_not_exist].should be_nil
end
end
describe "#union" do
it "keeps all attributes from disjoint headers" do
(@relation.attributes.union @other.attributes).to_ary.should have(4).items
end
it "keeps all attributes from both relations even if they seem like subsets" do
(@relation.attributes.union @subset.attributes).to_ary.should have(4).items
end
end
end
end