sample_rails_tailwind/test/helpers/application_helper_test.rb
songtianlun 712cd10894 style: standardize quotation marks and spacing
- 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.
2025-01-04 10:21:22 +08:00

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