Sha256: 7cc4534c547a2bdaa0e136a30682918454be7c21622d44ce06213c12979bd92f

Contents?: true

Size: 1.67 KB

Versions: 9

Compression:

Stored size: 1.67 KB

Contents

require 'spec_helper'

try_spec do

  require './spec/fixtures/tshirt'

  describe DataMapper::TypesFixtures::TShirt do
    supported_by :all do
      before do
        @resource = DataMapper::TypesFixtures::TShirt.new(
          :writing     => 'Fork you',
          :has_picture => true,
          :picture     => :octocat,
          :color       => :white
        )
      end

      describe 'with the default value' do
        it 'returns it as an array' do
          @resource.size.should eql([DataMapper::TypesFixtures::TShirt.properties[:size].default])
        end
      end

      describe 'with multiple sizes' do
        describe 'dumped and loaded' do
          before do
            @resource.size = [ :xs, :medium ]
            @resource.save.should be(true)
            @resource.reload
          end

          it 'returns size as array' do
            @resource.size.should == [ :xs, :medium ]
          end
        end
      end

      describe 'with a single size' do
        before do
          @resource.size = :large
        end

        describe 'dumped and loaded' do
          before do
            @resource.save.should be(true)
            @resource.reload
          end

          it 'returns size as array with a single value' do
            @resource.size.should == [:large]
          end
        end
      end

      # Flag does not add any auto validations
      describe 'without size' do
        before do
          @resource.should be_valid
          @resource.size = nil
        end

        it 'is valid' do
          @resource.should be_valid
        end

        it 'has no errors' do
          @resource.errors.should be_empty
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
ardm-types-1.2.3 spec/integration/flag_spec.rb
ardm-types-1.2.2 spec/integration/flag_spec.rb
dm-types-1.2.2 spec/integration/flag_spec.rb
dm-types-1.2.1 spec/integration/flag_spec.rb
dm-types-1.2.0 spec/integration/flag_spec.rb
dm-types-1.2.0.rc2 spec/integration/flag_spec.rb
dm-types-1.2.0.rc1 spec/integration/flag_spec.rb
dm-types-1.1.0 spec/integration/flag_spec.rb
dm-types-1.1.0.rc3 spec/integration/flag_spec.rb