Passed
Push — master ( cb8661...b33fcc )
by Cyb3r
07:37 queued 11s
created

test_main.empty_directory_test()   A

Complexity

Conditions 2

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 3
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
"""Test suite for MetaStalk
2
Currently unused but planned.
3
"""
4
import pytest
5
import MetaStalk
6
7
8
def empty_directory_test():
9
    """Shows result for empty directory"""
10
    with pytest.raises(FileNotFoundError):
11
        MetaStalk.run()
12