diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-24 16:24:32 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-24 16:24:34 -0800 |
commit | 34839845429e066b5c44a19fba95711b14c196e2 (patch) | |
tree | 9a703a934db85a8ac0694ea10900ec702a2e82e0 /rust/tests | |
parent | 8b2590b32e7b6bd2bfa518ec59c492dd48f8047f (diff) | |
download | fatcat-34839845429e066b5c44a19fba95711b14c196e2.tar.gz fatcat-34839845429e066b5c44a19fba95711b14c196e2.zip |
remove unused postgres-backed stats stuff
Will replace with elasticsearch-based dash in webface
Diffstat (limited to 'rust/tests')
-rw-r--r-- | rust/tests/test_api_server_http.rs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/rust/tests/test_api_server_http.rs b/rust/tests/test_api_server_http.rs index 86559545..6e4adda6 100644 --- a/rust/tests/test_api_server_http.rs +++ b/rust/tests/test_api_server_http.rs @@ -841,26 +841,6 @@ fn test_changelog() { } #[test] -fn test_stats() { - let (headers, router, _conn) = setup_http(); - - check_http_response( - request::get("http://localhost:9411/v0/stats", headers.clone(), &router), - status::Ok, - Some("merged_editgroups"), - ); - check_http_response( - request::get( - "http://localhost:9411/v0/stats?more=yes", - headers.clone(), - &router, - ), - status::Ok, - Some("merged_editgroups"), - ); -} - -#[test] fn test_400() { let (headers, router, _conn) = setup_http(); |