mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Update Request forgery tests to remove input wrappign div
This was changed at cbb917455f
This commit is contained in:
parent
cbb917455f
commit
dd5f831f3b
1 changed files with 5 additions and 5 deletions
|
@ -138,7 +138,7 @@ module RequestForgeryProtectionTests
|
|||
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 @@ module RequestForgeryProtectionTests
|
|||
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 @@ module RequestForgeryProtectionTests
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue