Rail 3 has renamed fieldWithErrors to field_with_errors

This commit is contained in:
Tom Hughes 2010-12-07 21:37:04 +00:00
parent b84ffebb7b
commit edb68e839f
3 changed files with 4 additions and 4 deletions

View file

@ -932,7 +932,7 @@ p#contributorGuidance {
/* Rules for highlighting fields with rails validation errors */
.fieldWithErrors {
.field_with_errors {
padding: 2px;
background-color: red;
display: table;

View file

@ -59,7 +59,7 @@ class UserControllerTest < ActionController::TestCase
assert_response :success
assert_template 'new'
assert_select "div#errorExplanation"
assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email"
assert_select "table#signupForm > tr > td > div[class=field_with_errors] > input#user_email"
end
# Check that the user account page will display and contains some relevant

View file

@ -30,7 +30,7 @@ class UserCreationTest < ActionController::IntegrationTest
assert_template 'user/new'
assert_equal response.headers['Content-Language'][0..1], localer.to_s[0..1] unless localer == :root
assert_select "div#errorExplanation"
assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_email"
assert_select "table#signupForm > tr > td > div[class=field_with_errors] > input#user_email"
assert_no_missing_translations
end
end
@ -49,7 +49,7 @@ class UserCreationTest < ActionController::IntegrationTest
assert_response :success
assert_template 'user/new'
assert_select "div#errorExplanation"
assert_select "table#signupForm > tr > td > div[class=fieldWithErrors] > input#user_display_name"
assert_select "table#signupForm > tr > td > div[class=field_with_errors] > input#user_display_name"
assert_no_missing_translations
end
end