summaryrefslogtreecommitdiff
path: root/spec/rubyspec/command_line/error_message_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/command_line/error_message_spec.rb')
-rw-r--r--spec/rubyspec/command_line/error_message_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/rubyspec/command_line/error_message_spec.rb b/spec/rubyspec/command_line/error_message_spec.rb
new file mode 100644
index 0000000000..6212452739
--- /dev/null
+++ b/spec/rubyspec/command_line/error_message_spec.rb
@@ -0,0 +1,11 @@
+require File.expand_path('../../spec_helper', __FILE__)
+
+describe "The error message caused by an exception" do
+ it "is not printed to stdout" do
+ out = ruby_exe("this_does_not_exist", args: "2> #{File::NULL}")
+ out.chomp.empty?.should == true
+
+ out = ruby_exe("end #syntax error", args: "2> #{File::NULL}")
+ out.chomp.empty?.should == true
+ end
+end