diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-10-04 23:17:21 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-10-04 23:17:21 +0200 |
commit | 20e6e83183bb4dd1fec54cdc50e462f15c8133cd (patch) | |
tree | 2c2b9cc3c2e168089c1a4a59834b15471b58aaad /tests | |
parent | a23450a8f54640d70dd26ed46ebc842693f49ebe (diff) | |
download | pydanclick-20e6e83183bb4dd1fec54cdc50e462f15c8133cd.tar.gz |
wip: externalize generation of option arguments
Diffstat (limited to 'tests')
-rw-r--r-- | tests/conftest.py | 5 | ||||
-rw-r--r-- | tests/test_core.py | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 9282809..5871ed8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1 @@ import pytest - - -@pytest.fixture(autouse=True) -def add_np(doctest_namespace): - doctest_namespace["np"] = numpy diff --git a/tests/test_core.py b/tests/test_core.py index b755a52..10e3b6c 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1,3 +1,7 @@ import pytest from pydanclick import core + + +def test_generate_cli_option_ok(): + assert True |