1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activejob/test/cases/job_serialization_test.rb
2014-09-03 23:01:46 +03:00

15 lines
322 B
Ruby

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.perform_later @person
assert_equal "Person with ID: 5", JobBuffer.last_value
end
end