summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-07-17 10:44:05 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-07-17 10:44:05 -0400
commitb89ca77dca51392c2a31409a4fa2ceb0ad89f44e (patch)
treee56b30fa55d8a4c50de96e92a4271e2dff3c20e9 /test/sql
parent4f2ede42060aeed539b877565e5197f6f9f9817d (diff)
parentae6fd1c3899f8197250e84bae363c75d0116d082 (diff)
downloadsqlalchemy-b89ca77dca51392c2a31409a4fa2ceb0ad89f44e.tar.gz
Merge remote-tracking branch 'origin/pr/188' into pr188
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_operators.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/sql/test_operators.py b/test/sql/test_operators.py
index 0985020d1..65d1e3716 100644
--- a/test/sql/test_operators.py
+++ b/test/sql/test_operators.py
@@ -1327,6 +1327,9 @@ class MathOperatorTest(fixtures.TestBase, testing.AssertsCompiledSQL):
else:
self._test_math_op(operator.div, '/')
+ def test_math_op_mod(self):
+ self._test_math_op(operator.mod, '%')
+
class ComparisonOperatorTest(fixtures.TestBase, testing.AssertsCompiledSQL):
__dialect__ = 'default'