From 97e416055ca4c106c6cfc37c6ced2aa1ef4c1051 Mon Sep 17 00:00:00 2001 From: alibw <69758323+alibw@users.noreply.github.com> Date: Wed, 18 Jun 2025 14:51:50 +0330 Subject: [PATCH] Added not expression tests --- Not.http | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Not.http diff --git a/Not.http b/Not.http new file mode 100644 index 0000000..8dfe249 --- /dev/null +++ b/Not.http @@ -0,0 +1,14 @@ +GET /Products?discontinued=not.is.false + +?? status == 200 +?? body length == 10 +?? js response.parsedBody[0].product_name == Chai +?? js response.parsedBody[9].product_name == Perth Pasties + +### +GET /Products?and=(id.lt.50,discontinued.not.is.false) + +?? status == 200 +?? body length == 9 +?? js response.parsedBody[0].product_name == Chai +?? js response.parsedBody[8].product_name == Singaporean Hokkien Fried Mee \ No newline at end of file