summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorTyler Cipriani <tyler@tylercipriani.com>2014-05-16 08:53:26 -0600
committerTyler Cipriani <tyler@tylercipriani.com>2014-05-16 08:53:26 -0600
commit9df8d35c83125f8bac689091c658e466223df977 (patch)
tree0d789cd398b4bb16ca65591f3b77e75aa15a2ebf /spec
parent14fcbbb4183f9cf261ad42ad4d205e60540f8104 (diff)
downloadmixlib-shellout-9df8d35c83125f8bac689091c658e466223df977.tar.gz
Correct spelling in spec files
Diffstat (limited to 'spec')
-rw-r--r--spec/mixlib/shellout_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb
index 277393b..5dcb6a7 100644
--- a/spec/mixlib/shellout_spec.rb
+++ b/spec/mixlib/shellout_spec.rb
@@ -927,8 +927,8 @@ describe Mixlib::ShellOut do
shell_cmd.stdout.should include("nanana cant hear you")
shell_cmd.status.termsig.should == 9
- log_output.string.should include("Command execeded allowed execution time, sending TERM")
- log_output.string.should include("Command execeded allowed execution time, sending KILL")
+ log_output.string.should include("Command exceeded allowed execution time, sending TERM")
+ log_output.string.should include("Command exceeded allowed execution time, sending KILL")
end
end
@@ -1030,7 +1030,7 @@ describe Mixlib::ShellOut do
let(:ruby_code) { "STDIN.close; sleep 0.5; STDOUT.puts :win" }
let(:options) { { :input => "Random data #{rand(100000)}" } }
- it 'should not hang or lose outupt' do
+ it 'should not hang or lose output' do
stdout.should eql("win#{LINE_ENDING}")
end
end
@@ -1038,7 +1038,7 @@ describe Mixlib::ShellOut do
context 'with subprocess that closes stdout and continues writing to stderr' do
let(:ruby_code) { "STDOUT.close; sleep 0.5; STDERR.puts :win" }
- it 'should not hang or lose outupt' do
+ it 'should not hang or lose output' do
stderr.should eql("win#{LINE_ENDING}")
end
end
@@ -1046,7 +1046,7 @@ describe Mixlib::ShellOut do
context 'with subprocess that closes stderr and continues writing to stdout' do
let(:ruby_code) { "STDERR.close; sleep 0.5; STDOUT.puts :win" }
- it 'should not hang or lose outupt' do
+ it 'should not hang or lose output' do
stdout.should eql("win#{LINE_ENDING}")
end
end