summaryrefslogtreecommitdiff
path: root/tests/150_create_db_grant.pp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/150_create_db_grant.pp')
-rw-r--r--tests/150_create_db_grant.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/150_create_db_grant.pp b/tests/150_create_db_grant.pp
new file mode 100644
index 0000000..597993d
--- /dev/null
+++ b/tests/150_create_db_grant.pp
@@ -0,0 +1,9 @@
+err("Create a db grant")
+
+mysql_grant {
+ "test_user@%test_db":
+ privileges => [ "select_priv", 'insert_priv', 'update_priv' ],
+ tag => test;
+}
+
+