Skip to content

Commit 6fbe70d

Browse files
committed
Add a test
1 parent 285afd7 commit 6fbe70d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
require 'test_helper'
22

33
class PotentialSpamProfilesJobTest < ActiveJob::TestCase
4-
# test "the truth" do
5-
# assert true
6-
# end
4+
test 'should run job successfully' do
5+
perform_enqueued_jobs do
6+
PotentialSpamProfilesJob.perform_later
7+
end
8+
assert_performed_jobs 1
9+
end
710
end

0 commit comments

Comments
 (0)