Sha256: 7c986c454bc3474a255c7f785d1c95534624af214f120ec71567b4552e82c298

Contents?: true

Size: 1.63 KB

Versions: 118

Compression:

Stored size: 1.63 KB

Contents

require 'helper'

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

    describe 'for' do
      it 'deals with unknown column types' do
        column = Struct.new(:type).new :crazy
        Attributes.for(column).must_equal Attributes::Undefined
      end

      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
        end
      end

      it 'returns the correct constant for ints' do
        column = Struct.new(:type).new :integer
        Attributes.for(column).must_equal Attributes::Integer
      end

      it 'returns the correct constant for floats' do
        column = Struct.new(:type).new :float
        Attributes.for(column).must_equal Attributes::Float
      end

      it 'returns the correct constant for decimals' do
        column = Struct.new(:type).new :decimal
        Attributes.for(column).must_equal Attributes::Decimal
      end

      it 'returns the correct constant for boolean' do
        column = Struct.new(:type).new :boolean
        Attributes.for(column).must_equal Attributes::Boolean
      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
        end
      end
    end
  end
end

Version data entries

118 entries across 100 versions & 14 rubygems

Version Path
dirty_history-0.5.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_attributes.rb
challah-0.5.1 vendor/bundle/gems/arel-3.0.2/test/test_attributes.rb
arel-3.0.2 test/test_attributes.rb
arel-2.2.3 test/test_attributes.rb
arel-3.0.1 test/test_attributes.rb
arel-2.2.2 test/test_attributes.rb
challah-0.5.0 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
dirty_history-0.5.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_attributes.rb
dirty_history-0.5.0 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_attributes.rb
challah-0.4.1 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.4.0 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.3.5 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.3.4 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.3.3 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.3.2 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.3.1 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.3.0 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.2.1 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
challah-0.2.0 vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb
arel-3.0.0 test/test_attributes.rb