You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PyRest is an automation framework to test REST API endpoints. This framework is built in Python and inspired from the simplicity of Karate framework by Intuit and snapshot mode from Jest framework by Facebook.
3
+
4
+
The supported markers are the following:
5
+
6
+
Marker | Description
7
+
------ | -----------
8
+
`$null` | Expects actual value to be `null`, and the data element or JSON key *must* be present
9
+
`$notnull` | Expects actual value to be not-`null`
10
+
`$array` | Expects actual value to be a JSON array
11
+
`$object` | Expects actual value to be a JSON object
12
+
`$boolean` | Expects actual value to be a boolean `true` or `false`
13
+
`$number` | Expects actual value to be a number
14
+
`$string` | Expects actual value to be a string
15
+
`$uuid` | Expects actual (string) value to conform to the UUID format
0 commit comments