summaryrefslogtreecommitdiff
path: root/spec/helpers
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-07-22 12:09:42 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-07-22 12:09:42 +0000
commit2c171fdd723a6a1f45dedd12e62f93745318b40e (patch)
tree989875e5b72e03be69aa3fb329900506a198b3f4 /spec/helpers
parentc70359a07f62d06825c58e165e08874a21622cdc (diff)
downloadgitlab-ce-2c171fdd723a6a1f45dedd12e62f93745318b40e.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/namespace_storage_limit_alert_helper_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/helpers/namespace_storage_limit_alert_helper_spec.rb b/spec/helpers/namespace_storage_limit_alert_helper_spec.rb
new file mode 100644
index 00000000000..ab3cf96edef
--- /dev/null
+++ b/spec/helpers/namespace_storage_limit_alert_helper_spec.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe NamespaceStorageLimitAlertHelper do
+ describe '#display_namespace_storage_limit_alert!' do
+ it 'is defined in CE' do
+ expect { helper.display_namespace_storage_limit_alert! }.not_to raise_error
+ end
+ end
+end