| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| 1 | import unittest, os |
||
| 6 | class DiffTests(DependencyInjectionTestBase): |
||
| 7 | |||
| 8 | def setUp(self): |
||
| 9 | super(DiffTests, self).setUp() |
||
| 10 | |||
| 11 | def test_assertSame(self): |
||
| 12 | # method on Diff object that throws an AssertionError if |
||
| 13 | # provenance is different |
||
| 14 | pass |
||
| 15 | |||
| 16 | def test_assertSame_with_fieldsOfInterest(self): |
||
| 17 | # only raises AssertionError if passed keys are different |
||
| 18 | # or don't exist in either object |
||
| 19 | pass |
||
| 20 | |||
| 22 |