Sha256: f904786b603595c5d2b60c7448235bf36b9c4e7a6f91bf2a43346fcf8fbf1a9a

Contents?: true

Size: 2 KB

Versions: 13

Compression:

Stored size: 2 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 'equality' do
      it 'is equal with equal ivars' do
        array = [Attribute.new('foo', 'bar'), Attribute.new('foo', 'bar')]
        assert_equal 1, array.uniq.size
      end

      it 'is not equal with different ivars' do
        array = [Attribute.new('foo', 'bar'), Attribute.new('foo', 'baz')]
        assert_equal 2, array.uniq.size
      end
    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

13 entries across 13 versions & 3 rubygems

Version Path
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/test/test_attributes.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/test/test_attributes.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/test/test_attributes.rb
arel-6.0.0.beta2 test/test_attributes.rb
arel-6.0.0.beta1 test/test_attributes.rb
arel-5.0.1.20140414130214 test/test_attributes.rb
arel-4.0.2 test/test_attributes.rb
arel-5.0.0 test/test_attributes.rb
arel-4.0.1 test/test_attributes.rb
challah-1.0.0 vendor/bundle/gems/arel-4.0.0/test/test_attributes.rb
arel-4.0.0 test/test_attributes.rb
arel-4.0.0.beta2 test/test_attributes.rb
arel-4.0.0.beta1 test/test_attributes.rb