Update Request forgery tests to remove input wrappign div

This was changed at cbb917455f306cf5818644b162f22be09f77d4b2
This commit is contained in:
Rafael Mendonça França 2014-04-17 16:14:40 -03:00
parent cbb917455f
commit dd5f831f3b

@ -138,7 +138,7 @@ def test_should_render_form_with_token_tag
assert_not_blocked do
get :index
end
assert_select 'form>div>input[name=?][value=?]', 'custom_authenticity_token', @token
assert_select 'form>input[name=?][value=?]', 'custom_authenticity_token', @token
end
def test_should_render_button_to_with_token_tag
@ -175,7 +175,7 @@ def test_should_render_form_with_token_tag_if_remote_and_external_authenticity_t
assert_not_blocked do
get :form_for_remote_with_external_token
end
assert_select 'form>div>input[name=?][value=?]', 'custom_authenticity_token', 'external_token'
assert_select 'form>input[name=?][value=?]', 'custom_authenticity_token', 'external_token'
ensure
ActionView::Helpers::FormTagHelper.embed_authenticity_token_in_remote_forms = original
end
@ -185,21 +185,21 @@ def test_should_render_form_with_token_tag_if_remote_and_external_authenticity_t
assert_not_blocked do
get :form_for_remote_with_external_token
end
assert_select 'form>div>input[name=?][value=?]', 'custom_authenticity_token', 'external_token'
assert_select 'form>input[name=?][value=?]', 'custom_authenticity_token', 'external_token'
end
def test_should_render_form_with_token_tag_if_remote_and_authenticity_token_requested
assert_not_blocked do
get :form_for_remote_with_token
end
assert_select 'form>div>input[name=?][value=?]', 'custom_authenticity_token', @token
assert_select 'form>input[name=?][value=?]', 'custom_authenticity_token', @token
end
def test_should_render_form_with_token_tag_with_authenticity_token_requested
assert_not_blocked do
get :form_for_with_token
end
assert_select 'form>div>input[name=?][value=?]', 'custom_authenticity_token', @token
assert_select 'form>input[name=?][value=?]', 'custom_authenticity_token', @token
end
def test_should_allow_get