aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/with_commit.rb
blob: 2b4725f89a821b7e5c6f5e06e9fb33f3fd46d69f (plain)
1
2
3
4
5
6
7
8
9
10
module WithCommit
  def with_commit
    yield
    subject._run_commit_callbacks
  end
end

RSpec.configure do |conf|
  conf.include WithCommit, type: :with_commit
end