summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-13 06:47:44 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-13 06:47:44 +0000
commitd1dd727533a1df1b59553b5d3feec87bb1dd951f (patch)
tree36a1556fcfe201f9d257e967d0fbefba51d98a0e /test
parent58f779170d9f2a93668c784063d36c34422fb491 (diff)
* test/ruby/test_rubyoptions.rb: add a simple test for __END__ and
DATA. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_rubyoptions.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 03cea47ea9..afa5039353 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -401,4 +401,17 @@ class TestRubyOptions < Test::Unit::TestCase
nil,
opts)
end
+
+ def test_DATA
+ t = Tempfile.new(["test_ruby_test_rubyoption", ".rb"])
+ t.puts "puts DATA.read.inspect"
+ t.puts "__END__"
+ t.puts "foo"
+ t.puts "bar"
+ t.puts "baz"
+ t.close
+ assert_in_out_err([t.path], "", %w("foo\\nbar\\nbaz\\n"), [])
+ ensure
+ t.close(true) if t
+ end
end