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

gitlab_git_matchers.rb « matchers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c840cd4bf2d95a206d817230c6583e0c5e13c269 (plain)
1
2
3
4
5
6
RSpec::Matchers.define :gitlab_git_repository_with do |values|
  match do |actual|
    actual.is_a?(Gitlab::Git::Repository) &&
      values.all? { |k, v| actual.send(k) == v }
  end
end