Skip to content

Commit

Permalink
generate job
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeCohen committed Aug 19, 2024
1 parent 3ec2d89 commit 4c0e3db
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/jobs/inat_import_job.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class InatImportJob < ApplicationJob
queue_as :default

def perform(*args)
# Do something later
end
end
7 changes: 7 additions & 0 deletions test/jobs/inat_import_job_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require "test_helper"

class InatImportJobTest < ActiveJob::TestCase
# test "the truth" do
# assert true
# end
end

0 comments on commit 4c0e3db

Please sign in to comment.