might 0.2.1

Automated testing REST APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
## Might


This tool executes REST API tests defined in a YAML-like format.

**Example Test Case:**

```yaml
Description: Test case for verifying the GET endpoint of the Example API
Author: John Doe
Method: GET
URL: https://google.com/
StatusCode: 400

Assertions:
  JSONPathExists: $.data
```

This test case will send a GET request to the specified URL, expect a 200 status code, and verify that the response contains a JSON object with a "data" property.