Skip to content

Instantly share code, notes, and snippets.

@Ruhshan
Created April 22, 2018 10:03
Show Gist options
  • Save Ruhshan/9927b915355280be1b7099e559d0abdd to your computer and use it in GitHub Desktop.
Save Ruhshan/9927b915355280be1b7099e559d0abdd to your computer and use it in GitHub Desktop.
import unittest
from mycodes import *
class MyTests(unittest.TestCase):
##your playground starts
def test_hello(self):
self.assertEqual(hello('John'), 'Happy testing! John')
##your playground ends
if __name__=="__main__":
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment