Skip to content

Commit

Permalink
test: add 2 more tests for month-name and mont-abbr.
Browse files Browse the repository at this point in the history
  • Loading branch information
fouladi committed Oct 25, 2024
1 parent ee2926c commit cd6db81
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_locales.py
Original file line number Diff line number Diff line change
Expand Up @@ -1467,6 +1467,8 @@ def test_weekday(self):
fa = arrow.Arrow(2024, 10, 25, 17, 30, 00)
assert self.locale.day_name(fa.isoweekday()) == "جمعه"
assert self.locale.day_abbreviation(fa.isoweekday()) == "جمعه"
assert self.locale.month_name(fa.month) == "اکتبر"
assert self.locale.month_abbreviation(fa.month) == "اکتبر"


@pytest.mark.usefixtures("lang_locale")
Expand Down

0 comments on commit cd6db81

Please sign in to comment.