Skip to content

Instantly share code, notes, and snippets.

@sanjitk7
Created May 17, 2020 06:16
Show Gist options
  • Save sanjitk7/e50b08b0c9619700bf0d1922fb367c33 to your computer and use it in GitHub Desktop.
Save sanjitk7/e50b08b0c9619700bf0d1922fb367c33 to your computer and use it in GitHub Desktop.
test method for camelCaseSplit
def test_camelCaseSplit(self):
self.assertEqual(camelCaseSplit("theDarkKnightRises"),["the","Dark","Knight","Rises"])
self.assertEqual(camelCaseSplit("helloW"),["hello","W"])
self.assertEqual(camelCaseSplit("helloIWorld"),["hello","I","World"])
with self.assertRaises(TypeError):
camelCaseSplit(1234)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment