def test_s_ends_in_y_but_not_vowel_y_uppercase(self): # Arrange text = "TELLY" # Act output = modifiers.s(text) # Assert self.assertEqual(output, "TELLies")
def test_s_ends_in_vowel_y_uppercase(self): # Arrange text = "MONKEY" # Act output = modifiers.s(text) # Assert self.assertEqual(output, "MONKEYs")
def test_s_ends_in_y_but_not_vowel_y(self): # Arrange text = "telly" # Act output = modifiers.s(text) # Assert self.assertEqual(output, "tellies")
def test_s_ends_in_non_s_uppercase(self): # Arrange text = "GOAT" # Act output = modifiers.s(text) # Assert self.assertEqual(output, "GOATs")
def test_s_ends_in_vowel_y(self): # Arrange text = "monkey" # Act output = modifiers.s(text) # Assert self.assertEqual(output, "monkeys")
def test_s_ends_in_x_uppercase(self): # Arrange text = "BOX" # Act output = modifiers.s(text) # Assert self.assertEqual(output, "BOXes")
def test_s_ends_in_non_s(self): # Arrange text = "goat" # Act output = modifiers.s(text) # Assert self.assertEqual(output, "goats")
def test_s_ends_in_y_but_not_vowel_y(self): # Arrange input = "telly" # Act output = modifiers.s(input) # Assert self.assertEqual(output, "tellies")
def test_s_ends_in_x(self): # Arrange text = "box" # Act output = modifiers.s(text) # Assert self.assertEqual(output, "boxes")
def test_s_ends_in_non_s(self): # Arrange input = "goat" # Act output = modifiers.s(input) # Assert self.assertEqual(output, "goats")
def test_s_ends_in_vowel_y(self): # Arrange input = "monkey" # Act output = modifiers.s(input) # Assert self.assertEqual(output, "monkeys")
def test_s_ends_in_x(self): # Arrange input = "box" # Act output = modifiers.s(input) # Assert self.assertEqual(output, "boxes")