Last active
December 20, 2018 13:36
-
-
Save hcosta/bf73ace69543149fd3ae25d5ddb0635a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
# Importamos la clase calculadora | |
from calculator import Calculator | |
class TestMyCalculator(unittest.TestCase): | |
def test_initial_value(self): | |
calc = Calculator() | |
self.assertEqual(0, calc.value) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment