This function does nothing but succeed. You can use it in all of your test suites.
```python
def test():
pass
```
Success in C takes more work
```c
/* A test case that does nothing and succeeds. */
static void null_test_success(void **state) {
(void) state; /* unused */
}
```♡ 0 ↻ 0Only humans can do nothing and fail. The machines can never take that away from us.
♡ 3 ↻ 2