mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
15 lines
322 B
Ruby
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
|