summaryrefslogtreecommitdiff
path: root/spec/ruby/library/English/alias_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/English/alias_spec.rb')
-rw-r--r--spec/ruby/library/English/alias_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/ruby/library/English/alias_spec.rb b/spec/ruby/library/English/alias_spec.rb
new file mode 100644
index 0000000000..3ff92f964d
--- /dev/null
+++ b/spec/ruby/library/English/alias_spec.rb
@@ -0,0 +1,14 @@
+require_relative '../../spec_helper'
+require 'English'
+
+describe "English" do
+ it "aliases $! to $ERROR_INFO and $ERROR_INFO still returns an Exception with a backtrace" do
+ exception = (1 / 0 rescue $ERROR_INFO)
+ exception.should.is_a?(Exception)
+ exception.backtrace.should.is_a?(Array)
+ end
+
+ it "aliases $@ to $ERROR_POSITION and $ERROR_POSITION still returns a backtrace" do
+ (1 / 0 rescue $ERROR_POSITION).should.is_a?(Array)
+ end
+end