diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | test/cgi/test_cgi_core.rb | 6 | ||||
-rwxr-xr-x | test/cgi/test_cgi_header.rb | 2 | ||||
-rwxr-xr-x | test/cgi/test_cgi_multipart.rb | 8 |
4 files changed, 14 insertions, 8 deletions
@@ -1,3 +1,9 @@ +Wed Sep 24 15:13:04 2008 Takeyuki Fujioka <[email protected]> + + * test/cgi/test_cgi_multipart.rb : test for miniunit. + * test/cgi/test_cgi_core.rb : ditto. + * test/cgi/test_cgi_header.rb : ditto. + Wed Sep 24 14:38:29 2008 NAKAMURA Usaku <[email protected]> * lib/tmpdir.rb: setup buffer with nul characters instead of spaces. diff --git a/test/cgi/test_cgi_core.rb b/test/cgi/test_cgi_core.rb index 36a3c3003c..6f420199d3 100755 --- a/test/cgi/test_cgi_core.rb +++ b/test/cgi/test_cgi_core.rb @@ -110,7 +110,7 @@ class CGICoreTest < Test::Unit::TestCase } ENV.update(@environ) cgi = CGI.new - assert_not_nil(cgi.cookies) + refute_nil(cgi.cookies) [ ['_session_id', ['12345'], ], ['name1', ['val1', 'val2'], ], ].each do |key, expected| @@ -131,7 +131,7 @@ class CGICoreTest < Test::Unit::TestCase 'CONTENT_LENGTH' => (64 * 1024 * 1024).to_s } ENV.update(@environ) - ex = assert_raise(StandardError) do + ex = assert_raises(StandardError) do cgi = CGI.new end assert_equal("too large post data.", ex.message) @@ -285,7 +285,7 @@ class CGICoreTest < Test::Unit::TestCase ENV.update(@environ) ## no htmltype cgi = CGI.new - assert_raise(NoMethodError) do cgi.doctype end + assert_raises(NoMethodError) do cgi.doctype end ## html3 cgi = CGI.new('html3') expected = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">' diff --git a/test/cgi/test_cgi_header.rb b/test/cgi/test_cgi_header.rb index 58f82ba3bc..7c131f867c 100755 --- a/test/cgi/test_cgi_header.rb +++ b/test/cgi/test_cgi_header.rb @@ -76,7 +76,7 @@ class CGIHeaderTest < Test::Unit::TestCase else expected = NoMethodError # for Ruby1.8 end - ex = assert_raise(expected) do + ex = assert_raises(expected) do cgi.header(nil) end end diff --git a/test/cgi/test_cgi_multipart.rb b/test/cgi/test_cgi_multipart.rb index 18eb741d77..c4ec833f84 100755 --- a/test/cgi/test_cgi_multipart.rb +++ b/test/cgi/test_cgi_multipart.rb @@ -213,7 +213,7 @@ class CGIMultipartTest < Test::Unit::TestCase ] original = _set_const(CGI, :MAX_MULTIPART_LENGTH, 2 * 1024) begin - ex = assert_raise(StandardError) do + ex = assert_raises(StandardError) do _test_multipart() end assert_equal("too large multipart data.", ex.message) @@ -232,7 +232,7 @@ class CGIMultipartTest < Test::Unit::TestCase 500.times { @data << item } #original = _set_const(CGI, :MAX_MULTIPART_COUNT, 128) begin - ex = assert_raise(StandardError) do + ex = assert_raises(StandardError) do _test_multipart() end assert_equal("too many parameters.", ex.message) @@ -253,7 +253,7 @@ class CGIMultipartTest < Test::Unit::TestCase #p input2 input2 end - ex = assert_raise(EOFError) do + ex = assert_raises(EOFError) do cgi = CGI.new end assert_equal("bad boundary end of body part", ex.message) @@ -264,7 +264,7 @@ class CGIMultipartTest < Test::Unit::TestCase #p input2 input2 end - ex = assert_raise(EOFError) do + ex = assert_raises(EOFError) do cgi = CGI.new end assert_equal("bad content body", ex.message) |