Skip to content

Commit

Permalink
Remove pending tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
akadusei committed Dec 3, 2023
1 parent 0aef832 commit b594db9
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions spec/mel/job_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,6 @@ describe Mel::Job do
task = Mel::InstantTask.find(id)
task.try(&.job.as(SendEmailJob).enqueue_before).should be_true
end

pending "runs even if enqueue fails" do
end
end

describe "#after_enqueue" do
Expand All @@ -254,9 +251,6 @@ describe Mel::Job do
task.try(&.enqueue)
task.try(&.job.as(SendEmailJob).enqueue_after).should be_true
end

pending "runs even if enqueue fails" do
end
end

describe "#before_dequeue" do
Expand All @@ -271,9 +265,6 @@ describe Mel::Job do
task.try(&.dequeue)
task.try(&.job.as(SendEmailJob).dequeue_before).should be_true
end

pending "runs even if dequeue fails" do
end
end

describe "#after_dequeue" do
Expand All @@ -288,9 +279,6 @@ describe Mel::Job do
task.try(&.dequeue)
task.try(&.job.as(SendEmailJob).dequeue_after).should be_true
end

pending "runs even if dequeue fails" do
end
end

describe "#run" do
Expand Down

0 comments on commit b594db9

Please sign in to comment.