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

tests.TestPyLast.test_user_charts()   A

Complexity

Conditions 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 8
rs 9.4286
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