Exemplo n.º 1
0
def test_delete_data_with_partitioned_dml(capsys, instance_id,
                                          sample_database):
    snippets.delete_data_with_partitioned_dml(instance_id,
                                              sample_database.database_id)
    out, _ = capsys.readouterr()
    assert "6 record(s) deleted" in out
Exemplo n.º 2
0
def delete_data_with_partitioned_dml(capsys):
    snippets.delete_data_with_partitioned_dml(INSTANCE_ID, DATABASE_ID)
    out, _ = capsys.readouterr()
    assert "5 record(s) deleted" in out
def delete_data_with_partitioned_dml(capsys):
    snippets.delete_data_with_partitioned_dml(INSTANCE_ID, DATABASE_ID)
    out, _ = capsys.readouterr()
    assert "5 record(s) deleted" in out