debian-mirror-gitlab/spec/support/matchers/be_valid_commit.rb
2019-10-12 21:52:04 +05:30

11 lines
277 B
Ruby

# frozen_string_literal: true
RSpec::Matchers.define :be_valid_commit do
match do |actual|
actual &&
actual.id == SeedRepo::Commit::ID &&
actual.message == SeedRepo::Commit::MESSAGE &&
actual.author_name == SeedRepo::Commit::AUTHOR_FULL_NAME
end
end