There was an error while loading. Please reload this page.
1 parent f051bd1 commit 5a238b0Copy full SHA for 5a238b0
test/index_test.py
@@ -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