diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-06-01 01:22:18 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-06-01 01:22:18 +0200 |
commit | 7f34a25eaa6de187797442bc6e0514289d77fed2 (patch) | |
tree | ca6aa5be660cf85a20c35b54eab125ad18dc7e68 | |
parent | a935501a2f62d103cf9d69d775399dae2e7dfead (diff) | |
parent | 12b32450c210cec1fdd8b2c19d564776e8054aa3 (diff) | |
download | gitpython-7f34a25eaa6de187797442bc6e0514289d77fed2.tar.gz |
Merge branch 'master' of git://gitorious.org/git-python/david
-rw-r--r-- | test/git/test_git.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/git/test_git.py b/test/git/test_git.py index 2b2464b0..d11bd661 100644 --- a/test/git/test_git.py +++ b/test/git/test_git.py @@ -51,3 +51,7 @@ class TestGit(object): r"(\. See 'git --help'\.)?" + os.linesep, self.git.this_does_not_exist(with_stderr=True, with_raw_output=True)) + + def test_it_handles_large_input(self): + output = self.git.execute(["cat", "/bin/bash"]) + assert( len(output) > 4096 * 1024 ) # at least 4k |