summaryrefslogtreecommitdiff
path: root/spec/lib/after_commit_queue_spec.rb
blob: 8e9dfd903384d8de006a0f61d105477912ae08d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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