Skip to content

Commit

Permalink
Ensure cache is always clean
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed May 14, 2015
1 parent 14be1b8 commit 7b4c8a2
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions weblate/trans/tests/test_vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,26 @@
import datetime


class NonExistingRepository(GitRepository):
_cmd = 'nonexisting-command'
class GitTestRepository(GitRepository):
_is_supported = None
_version = None


class GitTestRepository(GitRepository):
class NonExistingRepository(GitRepository):
_is_supported = None
_version = None
_cmd = 'nonexisting-command'


class GitVersionRepository(GitRepository):
_is_supported = None
_version = None
req_version = '200000'


class GitNoVersionRepository(GitRepository):
_is_supported = None
_version = None
req_version = None


Expand Down

0 comments on commit 7b4c8a2

Please sign in to comment.