aboutsummaryrefslogtreecommitdiffstats
path: root/tests/parse_es_requests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parse_es_requests.rs')
-rw-r--r--tests/parse_es_requests.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/parse_es_requests.rs b/tests/parse_es_requests.rs
index e918da9..01ea64a 100644
--- a/tests/parse_es_requests.rs
+++ b/tests/parse_es_requests.rs
@@ -1,4 +1,6 @@
+use es_public_proxy::ApiBody;
+
mod common;
#[test]
@@ -13,4 +15,6 @@ fn basic_parse() {
let request = common::load_request("GET_search");
assert_eq!(request.method, "GET");
assert_eq!(request.path_and_query, "/_search");
+
+ let thing: ApiBody = serde_json::from_str(&request.body.unwrap()).unwrap();
}