7 lines
114 B
Python
7 lines
114 B
Python
import pytest
|
|
import dsc_datatool as app
|
|
|
|
|
|
def test_main():
|
|
with pytest.raises(Exception):
|
|
app.main()
|