Skip to content

Instantly share code, notes, and snippets.

@hcosta
Last active December 20, 2018 13:36
Show Gist options
  • Save hcosta/bf73ace69543149fd3ae25d5ddb0635a to your computer and use it in GitHub Desktop.
Save hcosta/bf73ace69543149fd3ae25d5ddb0635a to your computer and use it in GitHub Desktop.
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