summaryrefslogtreecommitdiffstats
path: root/test/functional/enumerations_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/enumerations_controller_test.rb')
-rw-r--r--test/functional/enumerations_controller_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/functional/enumerations_controller_test.rb b/test/functional/enumerations_controller_test.rb
index 506fda186..ee783ab9c 100644
--- a/test/functional/enumerations_controller_test.rb
+++ b/test/functional/enumerations_controller_test.rb
@@ -39,6 +39,11 @@ class EnumerationsControllerTest < ActionController::TestCase
assert_tag 'input', :attributes => {:name => 'enumeration[name]'}
end
+ def test_new_with_invalid_type_should_respond_with_404
+ get :new, :type => 'UnknownType'
+ assert_response 404
+ end
+
def test_create
assert_difference 'IssuePriority.count' do
post :create, :enumeration => {:type => 'IssuePriority', :name => 'Lowest'}
@@ -63,6 +68,11 @@ class EnumerationsControllerTest < ActionController::TestCase
assert_tag 'input', :attributes => {:name => 'enumeration[name]', :value => 'High'}
end
+ def test_edit_invalid_should_respond_with_404
+ get :edit, :id => 999
+ assert_response 404
+ end
+
def test_update
assert_no_difference 'IssuePriority.count' do
put :update, :id => 6, :enumeration => {:type => 'IssuePriority', :name => 'New name'}