mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-16 05:24:26 +02:00
errors=r.SET_NULL/r.IGNORE options for parsedate/parsedatetime, closes #416
This commit is contained in:
parent
433813612f
commit
878d5f5cea
6 changed files with 108 additions and 20 deletions
|
|
@ -48,7 +48,13 @@ def test_convert_help():
|
|||
|
||||
@pytest.mark.parametrize(
|
||||
"recipe",
|
||||
[n for n in dir(recipes) if not n.startswith("_") and n not in ("json", "parser")],
|
||||
[
|
||||
n
|
||||
for n in dir(recipes)
|
||||
if not n.startswith("_")
|
||||
and n not in ("json", "parser")
|
||||
and callable(getattr(recipes, n))
|
||||
],
|
||||
)
|
||||
def test_recipes_are_documented(documented_recipes, recipe):
|
||||
assert recipe in documented_recipes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue