Skip to content

Instantly share code, notes, and snippets.

@chaserileyroberts
Last active July 12, 2017 04:12
Show Gist options
  • Save chaserileyroberts/3b5dd49cc936541c51287423be4739cb to your computer and use it in GitHub Desktop.
Save chaserileyroberts/3b5dd49cc936541c51287423be4739cb to your computer and use it in GitHub Desktop.
Unit testing
class TestClassifier():
def test_classification(self):
classifier = Classifier()
dog_image = open_image('test/data/dog_image.png')
classification = classifier.classify(dog_image)
self.assertEquals(classification, "Dog")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment