2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe AfterCommitQueue do
|
|
|
|
it 'runs after transaction is committed' do
|
|
|
|
called = false
|
|
|
|
test_proc = proc { called = true }
|
|
|
|
|
|
|
|
project = build(:project)
|
|
|
|
project.run_after_commit(&test_proc)
|
|
|
|
|
|
|
|
project.save
|
|
|
|
|
|
|
|
expect(called).to be true
|
|
|
|
end
|
|
|
|
end
|