summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2022-10-04 23:17:21 +0200
committerRomain Gonçalves <me@rgoncalves.se>2022-10-04 23:17:21 +0200
commit20e6e83183bb4dd1fec54cdc50e462f15c8133cd (patch)
tree2c2b9cc3c2e168089c1a4a59834b15471b58aaad /tests
parenta23450a8f54640d70dd26ed46ebc842693f49ebe (diff)
downloadpydanclick-20e6e83183bb4dd1fec54cdc50e462f15c8133cd.tar.gz
wip: externalize generation of option arguments
Diffstat (limited to 'tests')
-rw-r--r--tests/conftest.py5
-rw-r--r--tests/test_core.py4
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
remember that computers suck.