aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/cases/job_serialization_test.rb
blob: fc1b77744cf69b2690384fec8781186406bb166f (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
    JobBuffer.clear
    @person = Person.find(5)
  end

  test 'serialize job with gid' do
    GidJob.enqueue @person
    assert_equal "Person with ID: 5", JobBuffer.last_value
  end
end