summaryrefslogtreecommitdiff
path: root/spec/support/helpers/policy_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers/policy_helpers.rb')
-rw-r--r--spec/support/helpers/policy_helpers.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/support/helpers/policy_helpers.rb b/spec/support/helpers/policy_helpers.rb
new file mode 100644
index 00000000000..3d780eb5fb1
--- /dev/null
+++ b/spec/support/helpers/policy_helpers.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+module PolicyHelpers
+ def expect_allowed(*permissions)
+ permissions.each { |p| is_expected.to be_allowed(p) }
+ end
+
+ def expect_disallowed(*permissions)
+ permissions.each { |p| is_expected.not_to be_allowed(p) }
+ end
+end