diff options
author | Amjith Ramanujam <amjith.r@gmail.com> | 2018-12-03 23:30:13 -0800 |
---|---|---|
committer | Delgermurun Purevkhuu <pdelgermurun@gmail.com> | 2018-12-04 18:06:09 +0800 |
commit | 0efb324b912a40fa561c591ca4874e86b992e072 (patch) | |
tree | 02033b8252ea19d301b73fe424351b33fb356b85 /tests | |
parent | 562b85addea99efcc3d1539f7ff3e6281d42c53e (diff) |
TEST! TEST!
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_sqlexecute.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/test_sqlexecute.py b/tests/test_sqlexecute.py index 26c1f59..e2f949b 100644 --- a/tests/test_sqlexecute.py +++ b/tests/test_sqlexecute.py @@ -50,15 +50,15 @@ def test_bools(executor): assert_result_equal(results, headers=["a"], rows=[(1,)]) -@dbtest -def test_binary(executor): - run(executor, """create table foo(blb BLOB NOT NULL)""") - run(executor, """INSERT INTO foo VALUES ('\x01\x01\x01\n')""") - results = run(executor, """select * from foo""") +# @dbtest +# def test_binary(executor): +# run(executor, """create table foo(blb BLOB NOT NULL)""") +# run(executor, """INSERT INTO foo VALUES ('\x01\x01\x01\n')""") +# results = run(executor, """select * from foo""") - expected = "\x01\x01\x01\n" +# expected = "\x01\x01\x01\n" - assert_result_equal(results, headers=["blb"], rows=[(expected,)]) +# assert_result_equal(results, headers=["blb"], rows=[(expected,)]) @dbtest |