Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created March 2, 2019 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/600d224160e598bfe325a83d24a1b8c9 to your computer and use it in GitHub Desktop.
Save NMZivkovic/600d224160e598bfe325a83d24a1b8c9 to your computer and use it in GitHub Desktop.
import unittest
from helloworld import get_greetings
class HelloworldTests(unittest.TestCase):
def test_get_helloworld(self):
self.assertEqual(get_greetings(), 'Hello World!')
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment