diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-11-28 03:04:03 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-11-28 03:04:03 +0000 |
commit | a39d794308cabed87be73cc3405303cfb7398019 (patch) | |
tree | 901633807e067fc9e47c2e7a9066548dcbb7af22 | |
parent | 7855f287850a5c786b0ac40db900f2cb5e7be302 (diff) | |
parent | f7d5d25651ccd875f7fae479da8847c0b3c0c3ea (diff) | |
download | psycopg2-a39d794308cabed87be73cc3405303cfb7398019.tar.gz |
Merge remote-tracking branch 'jdufresne/iobase'
-rwxr-xr-x | tests/test_copy.py | 5 | ||||
-rw-r--r-- | tests/testutils.py | 14 |
2 files changed, 1 insertions, 18 deletions
diff --git a/tests/test_copy.py b/tests/test_copy.py index 9662321..c5e7913 100755 --- a/tests/test_copy.py +++ b/tests/test_copy.py @@ -25,7 +25,7 @@ import sys import string from testutils import (unittest, ConnectingTestCase, decorate_all_tests, - skip_if_no_iobase, skip_before_postgres, slow) + skip_before_postgres, slow) from cStringIO import StringIO from itertools import cycle, izip from subprocess import Popen, PIPE @@ -131,7 +131,6 @@ class CopyTests(ConnectingTestCase): finally: curs.close() - @skip_if_no_iobase def test_copy_text(self): self.conn.set_client_encoding('latin1') self._create_temp_table() # the above call closed the xn @@ -154,7 +153,6 @@ class CopyTests(ConnectingTestCase): f.seek(0) self.assertEqual(f.readline().rstrip(), about) - @skip_if_no_iobase def test_copy_bytes(self): self.conn.set_client_encoding('latin1') self._create_temp_table() # the above call closed the xn @@ -176,7 +174,6 @@ class CopyTests(ConnectingTestCase): f.seek(0) self.assertEqual(f.readline().rstrip(), about) - @skip_if_no_iobase def test_copy_expert_textiobase(self): self.conn.set_client_encoding('latin1') self._create_temp_table() # the above call closed the xn diff --git a/tests/testutils.py b/tests/testutils.py index 4e1ee37..e860439 100644 --- a/tests/testutils.py +++ b/tests/testutils.py @@ -248,20 +248,6 @@ def skip_if_tpc_disabled(f): return skip_if_tpc_disabled_ -def skip_if_no_iobase(f): - """Skip a test if io.TextIOBase is not available.""" - @wraps(f) - def skip_if_no_iobase_(self): - try: - from io import TextIOBase # noqa - except ImportError: - return self.skipTest("io.TextIOBase not found.") - else: - return f(self) - - return skip_if_no_iobase_ - - def skip_before_postgres(*ver): """Skip a test on PostgreSQL before a certain version.""" ver = ver + (0,) * (3 - len(ver)) |