Skip to content

Instantly share code, notes, and snippets.

@katiayn
Created January 22, 2017 17:41
Show Gist options
  • Save katiayn/d9086e2c233d264308f044194b90e0a8 to your computer and use it in GitHub Desktop.
Save katiayn/d9086e2c233d264308f044194b90e0a8 to your computer and use it in GitHub Desktop.
from unittest import TestCase
from calculator import mul
class CalculatorTest(TestCase):
def test_mul(self):
self.assertEqual(mul(2, 2), 4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment