aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/gid_job.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activejob/test/jobs/gid_job.rb')
-rw-r--r--activejob/test/jobs/gid_job.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activejob/test/jobs/gid_job.rb b/activejob/test/jobs/gid_job.rb
new file mode 100644
index 0000000000..c69e38d3cc
--- /dev/null
+++ b/activejob/test/jobs/gid_job.rb
@@ -0,0 +1,6 @@
+class GidJob < ActiveJob::Base
+ def perform(person)
+ $BUFFER << "Person with ID: #{person.id}"
+ end
+end
+ \ No newline at end of file