File tree Expand file tree Collapse file tree 5 files changed +64
-0
lines changed Expand file tree Collapse file tree 5 files changed +64
-0
lines changed Original file line number Diff line number Diff line change 1+ import sys
2+ import os
3+
4+ sys .path .append (os .getcwd ())
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments