Skip to content

Commit 5a238b0

Browse files
committed
update tests
1 parent f051bd1 commit 5a238b0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/index_test.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import unittest2 as unittest
2+
from ipynb.fs.full.index import *
3+
4+
class TestPythonMapsAndLists(unittest.TestCase):
5+
def test_palermo_var(self):
6+
self.assertEqual(palermo, 'Palermo')
7+
8+
def test_la_boca_var(self):
9+
self.assertEqual(la_boca, 'La Boca')
10+
11+
def test_ba_lat_var(self):
12+
self.assertEqual(ba_latitude, -34.6037)
13+
14+
def test_ba_long_var(self):
15+
self.assertEqual(ba_longitude, -58.3816)

0 commit comments

Comments
 (0)