Skip to content

Instantly share code, notes, and snippets.

@reiki4040
Created September 8, 2013 03:22
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 reiki4040/6481575 to your computer and use it in GitHub Desktop.
Save reiki4040/6481575 to your computer and use it in GitHub Desktop.
# -*- coding:utf-8 -*-
import unittest
import your_logic as logic
class LogicTest(unittest.TestCase):
def test_logic(self):
self.assertEquals('expect', logic.do_logic())
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment