mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
0f67e6d3f0
https://buildkite.com/rails/rails/builds/68834#f6a78cf3-6ae4-4148-b1c2-114ccce0731a/941-1012
29 lines
540 B
Ruby
29 lines
540 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "bundler/inline"
|
|
|
|
gemfile(true) do
|
|
source "https://rubygems.org"
|
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
# Activate the gem you are reporting the issue against.
|
|
gem "activejob", "6.0.3"
|
|
end
|
|
|
|
require "minitest/autorun"
|
|
require "active_job"
|
|
|
|
class BuggyJob < ActiveJob::Base
|
|
def perform
|
|
puts "performed"
|
|
end
|
|
end
|
|
|
|
class BuggyJobTest < ActiveJob::TestCase
|
|
def test_stuff
|
|
assert_enqueued_with(job: BuggyJob) do
|
|
BuggyJob.perform_later
|
|
end
|
|
end
|
|
end
|