Exemplo n.º 1
0
 def test_stamp_without_revision(self, stamp):
     migration.stamp(None)
     stamp.assert_called_once_with('fake_config', 'head')
Exemplo n.º 2
0
 def test_stamp_without_revision(self, stamp):
     migration.stamp(None)
     stamp.assert_called_once_with('fake_config', 'head')
Exemplo n.º 3
0
 def test_stamp(self, stamp):
     migration.stamp('some_revision')
     stamp.assert_called_once_with('fake_config', 'some_revision')
Exemplo n.º 4
0
 def test_stamp(self, stamp):
     migration.stamp('some_revision')
     stamp.assert_called_once_with('fake_config', 'some_revision')