We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b0b3bf commit c6604ffCopy full SHA for c6604ff
spanner/cloud-client/snippets_test.py
@@ -59,6 +59,13 @@ def test_insert_data(capsys):
59
assert 'Inserted data' in out
60
61
62
+def test_delete_data(capsys):
63
+ snippets.delete_data(INSTANCE_ID, DATABASE_ID)
64
+ snippets.insert_data(INSTANCE_ID, DATABASE_ID)
65
+ out, _ = capsys.readouterr()
66
+ assert 'Deleted data' in out
67
+
68
69
def test_query_data(capsys):
70
snippets.query_data(INSTANCE_ID, DATABASE_ID)
71
out, _ = capsys.readouterr()
0 commit comments