tests.test_version   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A test_verssion_access() 0 3 1
1
# tests/test_version.py
2
"""Examplary test package to test version related issues."""
3
from fogdb import __version__
4
5
6
def test_verssion_access():
7
    """Test for correct package version."""
8
    assert __version__ == "0.0.9"
9