Skip to content

Commit

Permalink
Add old regressions (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
daltonfury42 authored Jul 2, 2021
1 parent 2f9ca1e commit 679f2bf
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/test_truecase.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,13 @@ def test_get_true_case(self):
expected = "At the moment, I am getting ready for work!"
result = self.tc.get_true_case(sentence)
assert result == expected

sentence = "Please don't ruin this sentence."
expected = "Please don't ruin this sentence."
result = self.tc.get_true_case(sentence)
assert result == expected

sentence = "Testing $bug"
expected = "Testing $bug"
result = self.tc.get_true_case(sentence)
assert result == expected

0 comments on commit 679f2bf

Please sign in to comment.