summaryrefslogtreecommitdiff
path: root/test/ext
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-09-22 20:35:40 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-09-22 20:35:40 -0400
commit08a6a8b51916ab1d084a0070bbb07001cabb1c38 (patch)
tree3c5db3bfafcc18b33d510d246e69db41cb4eb0e0 /test/ext
parentc3c4b2d23dacc9e7e3b772c8384fa129db7d20d5 (diff)
downloadsqlalchemy-08a6a8b51916ab1d084a0070bbb07001cabb1c38.tar.gz
- Removed some now unneeded version checks [ticket:2829] courtesy alex gaynor
Diffstat (limited to 'test/ext')
-rw-r--r--test/ext/test_mutable.py6
-rw-r--r--test/ext/test_serializer.py2
2 files changed, 0 insertions, 8 deletions
diff --git a/test/ext/test_mutable.py b/test/ext/test_mutable.py
index 25c182f1d..ee1b8075e 100644
--- a/test/ext/test_mutable.py
+++ b/test/ext/test_mutable.py
@@ -153,9 +153,6 @@ class MutableWithScalarPickleTest(_MutableDictTestBase, fixtures.MappedTest):
self._test_non_mutable()
class MutableWithScalarJSONTest(_MutableDictTestBase, fixtures.MappedTest):
- # json introduced in 2.6
- __skip_if__ = lambda: sys.version_info < (2, 6),
-
@classmethod
def define_tables(cls, metadata):
import json
@@ -245,9 +242,6 @@ class MutableAssociationScalarPickleTest(_MutableDictTestBase, fixtures.MappedTe
)
class MutableAssociationScalarJSONTest(_MutableDictTestBase, fixtures.MappedTest):
- # json introduced in 2.6
- __skip_if__ = lambda: sys.version_info < (2, 6),
-
@classmethod
def define_tables(cls, metadata):
import json
diff --git a/test/ext/test_serializer.py b/test/ext/test_serializer.py
index 84fff1304..64a2d5a42 100644
--- a/test/ext/test_serializer.py
+++ b/test/ext/test_serializer.py
@@ -77,7 +77,6 @@ class SerializeTest(fixtures.MappedTest):
assert serializer.loads(serializer.dumps(User.name, -1), None,
None) is User.name
- @testing.requires.python26 # crashes in 2.5
def test_expression(self):
expr = \
select([users]).select_from(users.join(addresses)).limit(5)
@@ -149,7 +148,6 @@ class SerializeTest(fixtures.MappedTest):
assert j2.right is j.right
assert j2._target_adapter._next
- @testing.requires.python26 # namedtuple workaround not serializable in 2.5
@testing.exclude('sqlite', '<=', (3, 5, 9),
'id comparison failing on the buildbot')
def test_aliases(self):