Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from pathlib import Path |
||
2 | from unittest import TestCase |
||
3 | |||
4 | from barentsz import here |
||
5 | |||
6 | |||
7 | class TestHere(TestCase): |
||
8 | |||
9 | def test_here(self): |
||
10 | # EXECUTE |
||
11 | this_dir = here() |
||
12 | |||
13 | # VERIFY |
||
14 | self.assertEqual(Path(__file__).parent, this_dir) |
||
15 |