Skip to content

Commit

Permalink
Added some more tests. From what I've read, all days should resolve t…
Browse files Browse the repository at this point in the history
…o "dana" for the Croatian language. (No "_DualTrialQuadral" postfix.")
  • Loading branch information
hangy committed Nov 30, 2016
1 parent c190e9d commit 002cc7b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ public class TimeSpanHumanizeTests
[Theory]
[InlineData(1, "1 dan")]
[InlineData(2, "2 dana")]
[InlineData(40, "40 dana")]
[InlineData(41, "42 dana")]
[InlineData(42, "42 dana")]
public void Days(int days, string expected)
{
Assert.Equal(expected, TimeSpan.FromDays(days).Humanize());
Expand Down

0 comments on commit 002cc7b

Please sign in to comment.