Completed
Push — tox_test ( e5660f )
by Hugo
02:25
created

tests.TestPyLast   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %
Metric Value
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A test_passes() 0 2 1
1
#!/usr/bin/env python
2
"""
3
Integration (not unit) tests for pylast.py
4
"""
5
from flaky import flaky
6
import unittest
7
8
9
@flaky(max_runs=5, min_passes=1)
10
class TestPyLast(unittest.TestCase):
11
12
    def test_passes(self):
13
        self.assertTrue(True)
14
15
16
if __name__ == '__main__':
17
    unittest.main(failfast=True)
18