diff options
author | Muriithi Frederick Muriuki | 2018-03-09 18:15:19 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-03-09 18:15:19 +0300 |
commit | e147bc1ec354f9e07b7887109967afe8aae87f5b (patch) | |
tree | 9fca8fc7d4a44a96a35ac6681af455321ea755a3 /test/requests | |
parent | 34fa7690fe2255d44b129c7d2397113d713342b6 (diff) | |
download | genenetwork2-e147bc1ec354f9e07b7887109967afe8aae87f5b.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/requests')
-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("########################") |