~ubuntu-branches/ubuntu/wily/dulwich/wily-proposed

« back to all changes in this revision

Viewing changes to dulwich/tests/test_patch.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2014-04-25 02:29:17 UTC
  • mfrom: (1.5.6)
  • Revision ID: package-import@ubuntu.com-20140425022917-ivhlhvgfjkvfpocq
Tags: 0.9.7-1
* New upstream release.
* Use canonical URL in Vcs-Git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
"""Tests for patch.py."""
20
20
 
21
21
from io import BytesIO
 
22
from unittest import SkipTest
22
23
 
23
24
from dulwich.objects import (
24
25
    Blob,
37
38
    write_tree_diff,
38
39
    )
39
40
from dulwich.tests import (
40
 
    SkipTest,
41
41
    TestCase,
42
42
    )
43
43