Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# frozen_string_literal: true
require "bundler/inline"
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", github: "rails/rails", branch: "main"
end
require "active_job"
require "minitest/autorun"
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