summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/controllers/issuables_requiring_filter_shared_examples.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/controllers/issuables_requiring_filter_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/controllers/issuables_requiring_filter_shared_examples.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/support/shared_examples/controllers/issuables_requiring_filter_shared_examples.rb b/spec/support/shared_examples/controllers/issuables_requiring_filter_shared_examples.rb
new file mode 100644
index 00000000000..ee25df00dfb
--- /dev/null
+++ b/spec/support/shared_examples/controllers/issuables_requiring_filter_shared_examples.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+shared_examples 'issuables requiring filter' do |action|
+ it "doesn't load any issuables if no filter is set" do
+ expect_any_instance_of(described_class).not_to receive(:issuables_collection)
+
+ get action
+
+ expect(response).to render_template(action)
+ end
+
+ it "loads issuables if at least one filter is set" do
+ expect_any_instance_of(described_class).to receive(:issuables_collection).and_call_original
+
+ get action, params: { author_id: user.id }
+ end
+end