blob: a7ed478d4af393dec2435524090f9e19be0a7a9a (
plain)
1
2
3
4
5
6
7
8
|
require 'test_helper'
class ContentHelperTest < ActionView::TestCase
test "weekday_abbr delegates through the current I18n locale" do
I18n.locale = :de
assert_equal "Mo", weekday_abbr(Time.parse("2026-07-06"))
end
end
|