| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| from __future__ import unicode_literals |
| |
| import inspect |
| |
| from dnf.rpm.connection import RpmConnection |
| |
| import tests.support |
| |
| |
| class TestConnection(tests.support.TestCase): |
| def test_sanity(self): |
| rpm = RpmConnection('/') |
| ts = rpm.readonly_ts |
| self.assertTrue(inspect.isbuiltin(ts.clean)) |