Sha256: 078d905149969ad8f74e715efb7628abe5167f4cc4a97d6433677cdf01b5c154

Contents?: true

Size: 390 Bytes

Versions: 19

Compression:

Stored size: 390 Bytes

Contents

require 'spec_helper'
module Finitio
  describe Constraint, "named?" do

    subject{ constraint.named? }

    context 'with an unnamed constraint' do
      let(:constraint){ Constraint.new(byte_full) }

      it{ should eq(false) }
    end

    context 'with a named constraint' do
      let(:constraint){ Constraint.new(byte_full, :byte) }

      it{ should eq(true) }
    end

  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

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