tests.test_integration   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A test_simple() 0 4 1
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