mirror of
https://github.com/kennethreitz/records.git
synced 2026-06-05 06:46:17 +00:00
7 lines
144 B
Python
7 lines
144 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.usefixtures("foo_table")
|
|
def test_issue105(db):
|
|
assert db.query("select count(*) as n from foo").scalar() == 0
|