Sha256: ad1fbc85938925cac14416f68abcd9383574f33139cafe8c6307160c827398cf

Contents?: true

Size: 1.8 KB

Versions: 19

Compression:

Stored size: 1.8 KB

Contents

require 'spec_helper'
module Finitio
  describe TypeFactory, "DSL#union" do

    let(:factory){ TypeFactory.new }

    shared_examples_for "The Int|Float union type" do

      it{ should be_a(UnionType) }

      it 'should have the correct candidates' do
        expect(subject.candidates).to eq([intType, floatType])
      end
    end

    before do
      subject
    end

    context 'when used with the standard signature' do
      subject{
        factory.union([Integer, Float], 'MyUnion')
      }

      it_should_behave_like "The Int|Float union type"

      it 'should have the correct name' do
        expect(subject.name).to eq("MyUnion")
      end
    end

    context 'when used with the standard signature and no name' do
      subject{
        factory.union([Integer, Float])
      }

      it_should_behave_like "The Int|Float union type"

      it 'should have the correct name' do
        expect(subject.name).to eq("Integer|Float")
      end
    end

    context 'when used with a list of ruby classes' do
      subject{
        factory.union(Integer, Float)
      }

      it_should_behave_like "The Int|Float union type"

      it 'should have the correct name' do
        expect(subject.name).to eq("Integer|Float")
      end
    end

    context 'when used with a list of types' do
      subject{
        factory.union(intType, floatType)
      }

      it_should_behave_like "The Int|Float union type"

      it 'should have the correct name' do
        expect(subject.name).to eq("intType|floatType")
      end
    end

    context 'when used with a mix of both' do
      subject{
        factory.union(Integer, floatType)
      }

      it_should_behave_like "The Int|Float union type"

      it 'should have the correct name' do
        expect(subject.name).to eq("Integer|floatType")
      end
    end

  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
finitio-0.12.0 spec/type_factory/dsl/test_union.rb
finitio-0.11.4 spec/type_factory/dsl/test_union.rb
finitio-0.11.3 spec/type_factory/dsl/test_union.rb
finitio-0.11.2 spec/type_factory/dsl/test_union.rb
finitio-0.11.1 spec/type_factory/dsl/test_union.rb
finitio-0.10.0 spec/type_factory/dsl/test_union.rb
finitio-0.9.1 spec/type_factory/dsl/test_union.rb
finitio-0.9.0 spec/type_factory/dsl/test_union.rb
finitio-0.8.0 spec/type_factory/dsl/test_union.rb
finitio-0.7.0 spec/type_factory/dsl/test_union.rb
finitio-0.7.0.pre.rc4 spec/type_factory/dsl/test_union.rb
finitio-0.7.0.pre.rc3 spec/type_factory/dsl/test_union.rb
finitio-0.7.0.pre.rc2 spec/type_factory/dsl/test_union.rb
finitio-0.7.0.pre.rc1 spec/type_factory/dsl/test_union.rb
finitio-0.6.1 spec/type_factory/dsl/test_union.rb
finitio-0.6.0 spec/type_factory/dsl/test_union.rb
finitio-0.5.2 spec/type_factory/dsl/test_union.rb
finitio-0.5.1 spec/type_factory/dsl/test_union.rb
finitio-0.5.0 spec/type_factory/dsl/test_union.rb