1 | """Sample integration test module.""" |
||
2 | # pylint: disable=no-self-use,missing-docstring |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
3 | |||
4 | import unittest |
||
5 | |||
6 | from grortir import sample |
||
7 | |||
8 | |||
9 | class TestGrortir(unittest.TestCase): |
||
10 | |||
11 | """Sample integration test class.""" |
||
12 | |||
13 | @staticmethod |
||
14 | def test_network_stuff(): |
||
15 | """Example Test method.""" |
||
16 | assert sample.function_with_network_stuff() is True |
||
17 | |||
18 | @staticmethod |
||
19 | def test_disk_stuff(): |
||
20 | """Another example Test method.""" |
||
21 | assert sample.function_with_disk_stuff() is False |
||
22 |