Files
pisi/tests/historytest.py
T
2009-10-14 12:42:24 +00:00

27 lines
555 B
Python

import unittest
import pisi.relation
class HistoryTestCase(unittest.TestCase):
def testCreate(self):
history = pisi.history.History()
operation = 'upgrade'
history.create(operation)
history.create('install')
history.create('snapshot')
def testGetLatest(self):
history = pisi.history.History()
history.read('history/001_upgrade.xml')
assert not '099' == history._get_latest()
history.read('history/002_remove.xml')
assert not '099' == history._get_latest()