summaryrefslogtreecommitdiff
path: root/test/functional/errors_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/errors_controller_test.rb')
-rw-r--r--test/functional/errors_controller_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/functional/errors_controller_test.rb b/test/functional/errors_controller_test.rb
new file mode 100644
index 0000000..e6d2367
--- /dev/null
+++ b/test/functional/errors_controller_test.rb
@@ -0,0 +1,14 @@
+class ErrorsControllerTest < ActionController::TestCase
+
+ def test_not_found_resonds_with_404
+ get 'not_found'
+ assert_response 404
+ assert_template 'errors/not_found'
+ end
+
+ def test_server_error_resonds_with_500
+ get 'server_error'
+ assert_response 500
+ assert_template 'errors/server_error'
+ end
+end