Advertisement
rfmonk

unittest_ex1.py

Sep 9th, 2014
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. #! /usr/bin/env python
  2. """
  3. """
  4. import unittest
  5.  
  6. def fun(x):
  7.     return x + 1
  8.  
  9. class MyTest(unittest.TestCase):
  10.     def test(self):
  11.         self.assertEqual(fun(3), 4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement