Sha256: 5ff526d003284151a94170ebe54844366f49c380fcfb5308db28640867804421

Contents?: true

Size: 300 Bytes

Versions: 11

Compression:

Stored size: 300 Bytes

Contents

require 'spec_helper'

module Blazing

  describe Shell do

    let(:shell) { Shell.new }

    describe '#run' do
      it 'runs the provided command' do
        shell.should_receive(:`)
        shell.run('command')
      end

      it 'raises an exception when the command fails'
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
blazing-0.4.2 spec/blazing/shell_spec.rb
blazing-0.4.1 spec/blazing/shell_spec.rb
blazing-0.4.0 spec/blazing/shell_spec.rb
blazing-0.4.0.beta3 spec/blazing/shell_spec.rb
blazing-0.4.0.beta2 spec/blazing/shell_spec.rb
blazing-0.4.0.beta1 spec/blazing/shell_spec.rb
blazing-0.3.0 spec/blazing/shell_spec.rb
blazing-0.2.14 spec/blazing/shell_spec.rb
blazing-0.2.13 spec/blazing/shell_spec.rb
blazing-0.2.12 spec/blazing/shell_spec.rb
blazing-0.2.11 spec/blazing/shell_spec.rb