We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd26a9 commit 1881f02Copy full SHA for 1881f02
tests/test_main.py
@@ -0,0 +1,11 @@
1
+"""Testing that the main function actually loads.
2
+
3
+This ensures that all the dependencies actually load too.
4
+"""
5
6
+from flickr_download.flick_download import main
7
8
9
+def test_main() -> None:
10
+ """Loads the main function and expects an exit code of 1."""
11
+ assert main() == 1
0 commit comments