Sha256: 44da95b9c0ea77ef44a61e24fcf4dd2a3cac31b9607a5fd3dc14aec8f2ba3fa0

Contents?: true

Size: 1.08 KB

Versions: 4

Compression:

Stored size: 1.08 KB

Contents

require 'spec_helper'
require 'semantic_puppet/dependency/unsatisfiable_graph'

describe SemanticPuppet::Dependency::UnsatisfiableGraph do

  let(:modules) { %w[ foo bar baz ] }
  let(:graph) { double('Graph', :modules => modules) }
  let(:instance) { described_class.new(graph, ['a']) }

  subject { instance }

  describe '#message' do
    subject { instance.message }

    it { should match /#{instance.send(:sentence_from_list, modules)}/ }
  end

  describe '#sentence_from_list' do

    subject { instance.send(:sentence_from_list, modules) }

    context 'with a list of one item' do
      let(:modules) { %w[ foo ] }
      it { should eql 'foo' }
    end

    context 'with a list of two items' do
      let(:modules) { %w[ foo bar ] }
      it { should eql 'foo and bar' }
    end

    context 'with a list of three items' do
      let(:modules) { %w[ foo bar baz ] }
      it { should eql 'foo, bar, and baz' }
    end

    context 'with a list of more than three items' do
      let(:modules) { %w[ foo bar baz quux ] }
      it { should eql 'foo, bar, baz, and quux' }
    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
semantic_puppet-1.1.1 spec/unit/semantic_puppet/dependency/unsatisfiable_graph_spec.rb
semantic_puppet-1.1.0 spec/unit/semantic_puppet/dependency/unsatisfiable_graph_spec.rb
semantic_puppet-1.0.4 spec/unit/semantic_puppet/dependency/unsatisfiable_graph_spec.rb
semantic_puppet-1.0.3 spec/unit/semantic_puppet/dependency/unsatisfiable_graph_spec.rb