~ubuntu-branches/ubuntu/oneiric/dulwich/oneiric

« back to all changes in this revision

Viewing changes to dulwich/tests/test_index.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2010-07-30 13:22:11 UTC
  • mfrom: (1.2.11 upstream) (8.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20100730132211-k6aop8v5z42mawef
Tags: 0.6.1-1
* New upstream release.
* Bump standards version to 3.9.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17
17
# MA  02110-1301, USA.
18
18
 
19
 
 
20
19
"""Tests for the index."""
21
20
 
22
21
 
28
27
import stat
29
28
import struct
30
29
import tempfile
31
 
from unittest import TestCase
32
30
 
33
31
from dulwich.index import (
34
32
    Index,
44
42
from dulwich.objects import (
45
43
    Blob,
46
44
    )
 
45
from dulwich.tests import TestCase
47
46
 
48
47
 
49
48
class IndexTestCase(TestCase):