123456789101112131415161718192021222324252627282930313233343536 |
- """Tests for stashes."""
- from dulwich.repo import MemoryRepo
- from dulwich.stash import Stash
- from . import TestCase
- class StashTests(TestCase):
- """Tests for stash."""
- def test_obtain(self) -> None:
- repo = MemoryRepo()
- stash = Stash.from_repo(repo)
- self.assertIsInstance(stash, Stash)
|