aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/cases/job_serialization_test.rb
blob: f3b89d889965bdc09da166e729ecaf882b094201 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'helper'
require 'jobs/gid_job'
require 'models/person'

class JobSerializationTest < ActiveSupport::TestCase
  setup do
    Thread.current[:ajbuffer] = []
    @person = Person.find(5)
  end

  test 'serialize job with gid' do
    GidJob.enqueue @person
    assert_equal "Person with ID: 5", Thread.current[:ajbuffer].pop
  end
end