]> source.dussan.org Git - redmine.git/commitdiff
Adds assertions for r9572.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 29 Apr 2012 07:47:58 +0000 (07:47 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 29 Apr 2012 07:47:58 +0000 (07:47 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9577 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issue_categories_controller_test.rb

index 15bee0ccdb6a908be9092985158fa0b0d54e8016..86df7ee57bef27365a3d1a005faa679b11cbcf5e 100644 (file)
@@ -37,6 +37,7 @@ class IssueCategoriesControllerTest < ActionController::TestCase
     get :new, :project_id => '1'
     assert_response :success
     assert_template 'new'
+    assert_select 'input[name=?]', 'issue_category[name]'
   end
 
   def test_create
@@ -86,6 +87,7 @@ class IssueCategoriesControllerTest < ActionController::TestCase
     get :edit, :id => 2
     assert_response :success
     assert_template 'edit'
+    assert_select 'input[name=?][value=?]', 'issue_category[name]', 'Recipes'
   end
 
   def test_update