move to strong_parameters of rails4.

This commit is contained in:
Reinier Balt 2013-05-27 12:44:31 +02:00
parent 049296fd33
commit 671f64b419
24 changed files with 153 additions and 61 deletions

View file

@ -19,7 +19,7 @@ class ContextXmlApiTest < ActionDispatch::IntegrationTest
end
def test_fails_gracefully_with_invalid_xml_format
authenticated_post_xml_to_context_create "<context_name></context_name>"
authenticated_post_xml_to_context_create "<context><name></name></context>"
assert_responses_with_error 'Name context must have a name'
end

View file

@ -21,7 +21,7 @@ class ProjectXmlApiTest < ActionDispatch::IntegrationTest
end
def test_fails_with_invalid_xml_format2
authenticated_post_xml_to_project_create "<request><project></project></request>"
authenticated_post_xml_to_project_create "<project><name></name></project>"
assert_responses_with_error 'Name project must have a name'
end

View file

@ -61,7 +61,7 @@ class TodoXmlApiTest < ActionDispatch::IntegrationTest
assert_response :success
todo = @user.todos.where(:description => "this will succeed 2.0").first
assert_not_nil todo
assert !todo.uncompleted_predecessors.empty?
assert !todo.uncompleted_predecessors.empty?, "should have predecessors"
end
def test_post_create_todo_with_single_dependency