Welcome to mirror list, hosted at ThFree Co, Russian Federation.

requires_variables_shared_example.rb « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2921fccf87a7e601c131e26fde5eb21aa19c73d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

RSpec.shared_examples 'requires variables' do
  it 'shared example requires variables to be set', :aggregate_failures do
    variables = Array.wrap(required_variables)

    variables.each do |variable_name|
      expect { send(variable_name) }.not_to(
        raise_error, "The following variable must be set to use this shared example: #{variable_name}"
      )
    end
  end
end