From d5f0d48745727684473cf583a002e2c31174de2d Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 12 Jul 2020 18:04:26 +0800 Subject: Revert moving tests out of 'git' folder, related to #1030 --- test/test_exc.py | 169 ------------------------------------------------------- 1 file changed, 169 deletions(-) delete mode 100644 test/test_exc.py (limited to 'test/test_exc.py') diff --git a/test/test_exc.py b/test/test_exc.py deleted file mode 100644 index f16498ab..00000000 --- a/test/test_exc.py +++ /dev/null @@ -1,169 +0,0 @@ -# -*- coding: utf-8 -*- -# test_exc.py -# Copyright (C) 2008, 2009, 2016 Michael Trier (mtrier@gmail.com) and contributors -# -# This module is part of GitPython and is released under -# the BSD License: http://www.opensource.org/licenses/bsd-license.php - - -import re - -import ddt -from git.exc import ( - InvalidGitRepositoryError, - WorkTreeRepositoryUnsupported, - NoSuchPathError, - CommandError, - GitCommandNotFound, - GitCommandError, - CheckoutError, - CacheError, - UnmergedEntriesError, - HookExecutionError, - RepositoryDirtyError, -) -from test.lib import TestBase - -import itertools as itt - - -_cmd_argvs = ( - ('cmd', ), - ('θνιψοδε', ), - ('θνιψοδε', 'normal', 'argvs'), - ('cmd', 'ελληνικα', 'args'), - ('θνιψοδε', 'κι', 'αλλα', 'strange', 'args'), - ('θνιψοδε', 'κι', 'αλλα', 'non-unicode', 'args'), -) -_causes_n_substrings = ( - (None, None), # noqa: E241 @IgnorePep8 - (7, "exit code(7)"), # noqa: E241 @IgnorePep8 - ('Some string', "'Some string'"), # noqa: E241 @IgnorePep8 - ('παλιο string', "'παλιο string'"), # noqa: E241 @IgnorePep8 - (Exception("An exc."), "Exception('An exc.')"), # noqa: E241 @IgnorePep8 - (Exception("Κακια exc."), "Exception('Κακια exc.')"), # noqa: E241 @IgnorePep8 - (object(), "