tests.test_input   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 7
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A test_ask_input() 0 3 1
1 1
from music_album_creation.dialogs import ask_input
2
3
4 1
def test_ask_input():
5 1
    assert hasattr(ask_input, '_input')
6
    assert type(ask_input._input).__name__ == 'builtin_function_or_method'
7