diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-30 18:12:42 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-30 18:12:42 -0700 |
commit | 08f7f1642eb8380c5b00f6a54e4b29e55713effd (patch) | |
tree | 8e5d7b62d43fc2ec0c5a589c5b574c91c7591c36 /rust/tests | |
parent | 473cf4244be5d2e8fce9b95d1a750cf538dfc74b (diff) | |
download | fatcat-08f7f1642eb8380c5b00f6a54e4b29e55713effd.tar.gz fatcat-08f7f1642eb8380c5b00f6a54e4b29e55713effd.zip |
respect more flag for stats endpoint
Diffstat (limited to 'rust/tests')
-rw-r--r-- | rust/tests/test_api_server.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/tests/test_api_server.rs b/rust/tests/test_api_server.rs index ac03c3c1..b46367e0 100644 --- a/rust/tests/test_api_server.rs +++ b/rust/tests/test_api_server.rs @@ -509,6 +509,11 @@ fn test_stats() { status::Ok, Some("merged_editgroups"), ); + check_response( + request::get("http://localhost:9411/v0/stats?more=yes", headers, &router), + status::Ok, + Some("merged_editgroups"), + ); } #[test] |