2017-08-13 09:02:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-28 13:12:48 -04:00
|
|
|
require "bundler/inline"
|
2016-09-02 02:01:04 -04:00
|
|
|
|
|
|
|
gemfile(true) do
|
|
|
|
source "https://rubygems.org"
|
2017-09-27 04:55:43 -04:00
|
|
|
|
2017-09-26 17:02:11 -04:00
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
2017-09-27 04:55:43 -04:00
|
|
|
|
2016-09-02 02:01:04 -04:00
|
|
|
# Activate the gem you are reporting the issue against.
|
2020-05-06 21:56:45 -04:00
|
|
|
gem "activejob", "6.0.3"
|
2016-09-02 02:01:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
require "minitest/autorun"
|
|
|
|
require "active_job"
|
|
|
|
|
|
|
|
class BuggyJob < ActiveJob::Base
|
|
|
|
def perform
|
|
|
|
puts "performed"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class BuggyJobTest < ActiveJob::TestCase
|
|
|
|
def test_stuff
|
2016-09-02 04:16:15 -04:00
|
|
|
assert_enqueued_with(job: BuggyJob) do
|
|
|
|
BuggyJob.perform_later
|
2016-09-02 02:01:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|