This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compatibility with latest WEI (v0.5.6); update tests
- Loading branch information
1 parent
a9d5ddc
commit bfab899
Showing
4 changed files
with
38 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
"""Base module tests.""" | ||
|
||
import unittest | ||
|
||
|
||
class TestModule_Base(unittest.TestCase): | ||
"""Base test class for this module.""" | ||
|
||
pass | ||
|
||
|
||
class TestImports(TestModule_Base): | ||
"""Test the imports of the module are working correctly""" | ||
|
||
def test_driver_import(self): | ||
"""Test the driver and rest node imports""" | ||
import sleep_rest_node | ||
|
||
assert sleep_rest_node | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters