-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13cec27
commit f46aaa2
Showing
3 changed files
with
32 additions
and
0 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
File renamed without changes.
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,28 @@ | ||
import os | ||
import sys | ||
|
||
# Tests | ||
|
||
def test__from_pycrysfml_import_crysfml08lib(): | ||
try: | ||
from pycrysfml import crysfml08lib | ||
assert True | ||
except Exception as e: | ||
print("::::: Failed to 'from pycrysfml import crysfml08lib'") | ||
print('::::: ERROR:', e) | ||
#assert False | ||
|
||
def test__from_pycrysfml_import_cfml_utilities(): | ||
try: | ||
from pycrysfml import cfml_utilities | ||
assert True | ||
except Exception as e: | ||
print("::::: Failed to 'from pycrysfml import cfml_utilities'") | ||
print('::::: ERROR:', e) | ||
#assert False | ||
|
||
# Debug | ||
|
||
if __name__ == '__main__': | ||
test__from_pycrysfml_import_crysfml08lib() | ||
test__from_pycrysfml_import_cfml_utilities() |