aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/test/connection_test.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-09-08 00:07:30 +0000
committerRick Olson <technoweenie@gmail.com>2006-09-08 00:07:30 +0000
commit8d9e6609f8f67e55bba1f9bdbea62af22360dd3c (patch)
treed8315802e29467a28af7d6fb036b912cadbff587 /activeresource/test/connection_test.rb
parent7c4b6a55b61229ef5f2f053c9a88a738497c70cf (diff)
downloadrails-8d9e6609f8f67e55bba1f9bdbea62af22360dd3c.tar.gz
rails-8d9e6609f8f67e55bba1f9bdbea62af22360dd3c.tar.bz2
rails-8d9e6609f8f67e55bba1f9bdbea62af22360dd3c.zip
Basic validation support [Rick Olson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5068 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activeresource/test/connection_test.rb')
-rw-r--r--activeresource/test/connection_test.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/activeresource/test/connection_test.rb b/activeresource/test/connection_test.rb
index 4790c30bed..d72c1c612d 100644
--- a/activeresource/test/connection_test.rb
+++ b/activeresource/test/connection_test.rb
@@ -17,8 +17,11 @@ class ConnectionTest < Test::Unit::TestCase
# 404 is a missing resource.
assert_response_raises ActiveResource::ResourceNotFound, 404
+ # 400 is a validation error
+ assert_response_raises ActiveResource::ResourceInvalid, 400
+
# 4xx are client errors.
- [400, 499].each do |code|
+ [401, 499].each do |code|
assert_response_raises ActiveResource::ClientError, code
end