-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add functions, tests, and start snake-casing
- Loading branch information
1 parent
a735196
commit 15f8409
Showing
2 changed files
with
62 additions
and
3 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,13 @@ | ||
"""Tests for ``acspy.acsc``.""" | ||
|
||
from acspy import acsc | ||
|
||
|
||
def test_open_comm_simulator(): | ||
hc = acsc.open_comm_simulator() | ||
assert hc != -1 | ||
|
||
|
||
def test_open_comm_direct(): | ||
hc = acsc.open_comm_direct() | ||
assert hc != -1 |