diff options
author | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-01 15:14:45 +0000 |
---|---|---|
committer | mrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-01 15:14:45 +0000 |
commit | ae0181b7feb2e676106f2750b3ec774f139eb4d6 (patch) | |
tree | 0de7c0923bad58365ed6ed7a9ff78d77bbf2d282 /bootstraptest | |
parent | da5e757237721f38c1f16421f0862d35acf56016 (diff) | |
download | ruby-ae0181b7feb2e676106f2750b3ec774f139eb4d6.tar.gz |
* bootstraptest/test_literal_suffix.rb: add two test cases to
examine that "1if true" and "1rescue nil" are recognized as 1.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_literal_suffix.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bootstraptest/test_literal_suffix.rb b/bootstraptest/test_literal_suffix.rb index e466cfc5d2..29ce8e05b3 100644 --- a/bootstraptest/test_literal_suffix.rb +++ b/bootstraptest/test_literal_suffix.rb @@ -37,6 +37,8 @@ assert_equal '0+6/5i', '1.2ri' assert_equal 'Complex', '1.2ri.class' assert_equal '0+10.0i', '1e1i' assert_equal 'Complex', '1e1i.class' +assert_equal '1', '1if true' +assert_equal '1', '1rescue nil' assert_equal 'syntax error, unexpected tIDENTIFIER, expecting end-of-input', %q{begin eval('1ir', nil, '', 0); rescue SyntaxError => e; e.message[/\A:(?:\d+:)? (.*)/, 1] end} |