Skip to content

Commit bb2a9ba

Browse files
committed
added test suite in re: learnco students #8
1 parent ef30d24 commit bb2a9ba

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.learn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
jupyter_notebook: true
22

33
tags:
4-
- jupyter_notebook
4+
- jupyter
55
- python
66

77
languages:

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pandas
2+
Unittest2

test/index_test.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import unittest2 as unittest
2+
from ipynb.fs.full.index import *
3+
4+
class TestPythonDatatypes(unittest.TestCase):
5+
def test_passes(self):
6+
self.assertEqual(True, True)

0 commit comments

Comments
 (0)