9 lines
170 B
Ruby
9 lines
170 B
Ruby
# frozen_string_literal: true
|
|
require 'test_helper'
|
|
|
|
class ApplicationJobTest < ActiveSupport::TestCase
|
|
test 'should exists' do
|
|
assert ApplicationJob.new
|
|
end
|
|
end
|