tests.test_integration.test_simple()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 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