- Updated single quotes to double quotes for consistency - Adjusted spacing in array definitions for better readability - Ensured consistent use of quotes in flash messages and method parameters These changes enhance the overall code style without altering any functionality.
9 lines
265 B
Ruby
9 lines
265 B
Ruby
require "test_helper"
|
|
|
|
class ApplicationHelperTest < ActionView::TestCase
|
|
test "full title helper" do
|
|
assert_equal full_title, "Ruby on Rails Tutorial Sample App"
|
|
assert_equal full_title("Contact"), "Contact | Ruby on Rails Tutorial Sample App"
|
|
end
|
|
end
|