Skip to content

Commit 866cdd0

Browse files
committed
test outline
1 parent f9b9842 commit 866cdd0

File tree

5 files changed

+64
-0
lines changed

5 files changed

+64
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import sys
2+
import os
3+
4+
sys.path.append(os.getcwd())
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""Unit tests for rvdss/database.py."""
2+
3+
# standard library
4+
import unittest
5+
6+
# py3tester coverage target
7+
__test_target__ = "delphi.epidata.acquisition.rvdss.database"
8+
9+
10+
class FunctionTests(unittest.TestCase):
11+
"""Tests each function individually."""
12+
13+
def test_syntax(self):
14+
"""This no-op test ensures that syntax is valid."""
15+
pass
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""Unit tests for rvdss/pull_historic.py."""
2+
3+
# standard library
4+
import unittest
5+
6+
# py3tester coverage target
7+
__test_target__ = "delphi.epidata.acquisition.rvdss.pull_historic"
8+
9+
10+
class FunctionTests(unittest.TestCase):
11+
"""Tests each function individually."""
12+
13+
def test_syntax(self):
14+
"""This no-op test ensures that syntax is valid."""
15+
pass
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""Unit tests for rvdss/run.py."""
2+
3+
# standard library
4+
import unittest
5+
6+
# py3tester coverage target
7+
__test_target__ = "delphi.epidata.acquisition.rvdss.run"
8+
9+
10+
class FunctionTests(unittest.TestCase):
11+
"""Tests each function individually."""
12+
13+
def test_syntax(self):
14+
"""This no-op test ensures that syntax is valid."""
15+
pass
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""Unit tests for rvdss/utils.py."""
2+
3+
# standard library
4+
import unittest
5+
6+
# py3tester coverage target
7+
__test_target__ = "delphi.epidata.acquisition.rvdss.utils"
8+
9+
10+
class FunctionTests(unittest.TestCase):
11+
"""Tests each function individually."""
12+
13+
def test_syntax(self):
14+
"""This no-op test ensures that syntax is valid."""
15+
pass

0 commit comments

Comments
 (0)