diff options
author | Muriithi Frederick Muriuki | 2018-03-09 18:15:19 +0300 |
---|---|---|
committer | Pjotr Prins | 2018-03-26 09:29:29 +0000 |
commit | a29c16b770aa0bb53c632eecc1764caf02789fe7 (patch) | |
tree | 3d391d39f551a228427c30be00d2effbec393ec9 /test | |
parent | 428371a67a7c742e239d96914a96558171f9f59e (diff) | |
download | genenetwork2-a29c16b770aa0bb53c632eecc1764caf02789fe7.tar.gz |
Add link_checker module
* Add the module that will hold the code to test the links on the
system.
Diffstat (limited to 'test')
-rw-r--r-- | test/requests/link_checker.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/requests/link_checker.py b/test/requests/link_checker.py new file mode 100644 index 00000000..f171c12a --- /dev/null +++ b/test/requests/link_checker.py @@ -0,0 +1,9 @@ +import requests + +def check_links(args_obj, parser): + print("") + print("Checking links") + print("########################") + print("Not implemented yet.") + print("This is supposed to check all links in the system.") + print("########################") |