1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/test/test_attributes.rb

55 lines
1.6 KiB
Ruby
Raw Normal View History

require 'helper'
2010-08-12 17:55:31 -04:00
module Arel
describe 'Attributes' do
it 'responds to lower' do
relation = Table.new(:users)
attribute = relation[:foo]
node = attribute.lower
assert_equal 'LOWER', node.name
assert_equal [attribute], node.expressions
end
2010-08-12 17:55:31 -04:00
describe 'for' do
it 'deals with unknown column types' do
column = Struct.new(:type).new :crazy
Attributes.for(column).must_equal Attributes::Undefined
end
2010-08-12 17:55:31 -04:00
it 'returns the correct constant for strings' do
[:string, :text, :binary].each do |type|
column = Struct.new(:type).new type
Attributes.for(column).must_equal Attributes::String
2010-08-12 17:55:31 -04:00
end
end
it 'returns the correct constant for ints' do
column = Struct.new(:type).new :integer
Attributes.for(column).must_equal Attributes::Integer
2010-08-12 17:55:31 -04:00
end
it 'returns the correct constant for floats' do
column = Struct.new(:type).new :float
Attributes.for(column).must_equal Attributes::Float
2010-08-12 17:55:31 -04:00
end
it 'returns the correct constant for decimals' do
column = Struct.new(:type).new :decimal
Attributes.for(column).must_equal Attributes::Decimal
2010-08-12 17:55:31 -04:00
end
it 'returns the correct constant for boolean' do
column = Struct.new(:type).new :boolean
Attributes.for(column).must_equal Attributes::Boolean
2010-08-12 17:55:31 -04:00
end
it 'returns the correct constant for time' do
[:date, :datetime, :timestamp, :time].each do |type|
column = Struct.new(:type).new type
Attributes.for(column).must_equal Attributes::Time
2010-08-12 17:55:31 -04:00
end
end
end
end
end