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