# File test/test_http_error.rb, line 16 def test_404_Not_Found ex = Rucy::HTTPError.new(404) assert_instance_of(Rucy::HTTPError, ex) assert_equal(404, ex.status) assert_equal('404 Not Found', ex.message) end