2010-10-18 19:54:50 -04:00
|
|
|
require 'helper'
|
2010-08-12 17:55:31 -04:00
|
|
|
|
|
|
|
module Arel
|
|
|
|
describe 'Attributes' do
|
|
|
|
describe 'for' do
|
2010-11-16 11:09:26 -05:00
|
|
|
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
|
2010-10-18 18:41:21 -04:00
|
|
|
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
|
2010-10-18 18:41:21 -04:00
|
|
|
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
|
2010-10-18 18:41:21 -04:00
|
|
|
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
|
2010-10-18 18:41:21 -04:00
|
|
|
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
|
2010-10-18 18:41:21 -04:00
|
|
|
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
|
2010-10-18 18:41:21 -04:00
|
|
|
Attributes.for(column).must_equal Attributes::Time
|
2010-08-12 17:55:31 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|