| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | """ |
||
| 2 | This is where tests that hit external APIs will go. They will be skipped by default. |
||
| 3 | """ |
||
| 4 | |||
| 5 | import pytest |
||
| 6 | from approvaltests.approvals import verify |
||
| 7 | |||
| 8 | |||
| 9 | @pytest.mark.integration |
||
| 10 | def test_simple(): |
||
| 11 | result = "Hello ApprovalTests" |
||
| 12 | verify(result) |
||
| 13 |