aboutsummaryrefslogtreecommitdiffstats
path: root/test/rdoc/test_rdoc_servlet.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rdoc/test_rdoc_servlet.rb')
-rw-r--r--test/rdoc/test_rdoc_servlet.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/rdoc/test_rdoc_servlet.rb b/test/rdoc/test_rdoc_servlet.rb
index e57926ecd3..ff64d5670f 100644
--- a/test/rdoc/test_rdoc_servlet.rb
+++ b/test/rdoc/test_rdoc_servlet.rb
@@ -166,7 +166,7 @@ class TestRDocServlet < RDoc::TestCase
@req.header['if-modified-since'] = [(Time.now + 10).httpdate]
@req.path = '/ruby/Missing.html'
- assert_raises WEBrick::HTTPStatus::NotModified do
+ assert_raise WEBrick::HTTPStatus::NotModified do
@s.do_GET @req, @res
end
end
@@ -294,7 +294,7 @@ class TestRDocServlet < RDoc::TestCase
end
def test_if_modified_since
- omit 'File.utime on directory not supported' if Gem.win_platform?
+ skip 'File.utime on directory not supported' if Gem.win_platform?
temp_dir do
now = Time.now
@@ -307,7 +307,7 @@ class TestRDocServlet < RDoc::TestCase
end
def test_if_modified_since_not_modified
- omit 'File.utime on directory not supported' if Gem.win_platform?
+ skip 'File.utime on directory not supported' if Gem.win_platform?
temp_dir do
now = Time.now
@@ -315,7 +315,7 @@ class TestRDocServlet < RDoc::TestCase
@req.header['if-modified-since'] = [(now + 10).httpdate]
- assert_raises WEBrick::HTTPStatus::NotModified do
+ assert_raise WEBrick::HTTPStatus::NotModified do
@s.if_modified_since @req, @res, '.'
end
@@ -490,7 +490,7 @@ class TestRDocServlet < RDoc::TestCase
def test_store_for_missing_documentation
FileUtils.mkdir_p(File.join @gem_doc_dir, 'spec-1.0', 'ri')
- e = assert_raises WEBrick::HTTPStatus::NotFound do
+ e = assert_raise WEBrick::HTTPStatus::NotFound do
@s.store_for 'spec-1.0'
end
@@ -499,7 +499,7 @@ class TestRDocServlet < RDoc::TestCase
end
def test_store_for_missing_gem
- e = assert_raises WEBrick::HTTPStatus::NotFound do
+ e = assert_raise WEBrick::HTTPStatus::NotFound do
@s.store_for 'missing'
end