aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/mysqlerl_SUITE.erl6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/mysqlerl_SUITE.erl b/test/mysqlerl_SUITE.erl
index 260c0ea..530a4e5 100644
--- a/test/mysqlerl_SUITE.erl
+++ b/test/mysqlerl_SUITE.erl
@@ -338,6 +338,12 @@ rollback(Config) ->
{updated, 0} = mysqlerl:commit(?config(db_ref, Config), rollback),
{skip, "Not implemented"}.
+describe_no_table(doc) ->
+ ["Test that describe_table/2 fails properly when no table exists."];
+describe_no_table(Config) ->
+ {error, _} = mysqlerl:describe_table(?config(db_ref, Config), "none").
+
+
select_no_results(doc) ->
["Tests that select/3 fails properly when no results exist."];
select_no_results(Config) ->