We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3f5acf commit 7a1040cCopy full SHA for 7a1040c
test/multi_queue_test.rb
@@ -16,8 +16,6 @@
16
end
17
18
it "blocks on pop" do
19
- skip "not quite working yet"
20
-
21
foo = Resque::Queue.new 'foo', redis, coder
22
bar = Resque::Queue.new 'bar', redis, coder
23
queue = Resque::MultiQueue.new([foo, bar], redis)
@@ -51,8 +49,6 @@
51
49
52
50
53
it "blocks forever on pop" do
54
55
56
57
58
@@ -62,8 +58,6 @@
62
63
59
64
60
it "blocking pop processes queues in the order given" do
65
66
67
61
68
69
baz = Resque::Queue.new 'baz', redis, coder
test/resque_test.rb
@@ -228,8 +228,6 @@
228
229
230
it "keeps stats" do
231
232
233
Resque::Job.create(:jobs, SomeJob, 20, '/tmp')
234
Resque::Job.create(:jobs, BadJob)
235
Resque::Job.create(:jobs, GoodJob)
test/worker_test.rb
@@ -100,8 +100,6 @@ def self.perform
100
101
102
it "catches exceptional jobs" do
103
104
105
106
107
@worker.process
@@ -117,8 +115,6 @@ def self.perform
117
115
118
116
119
it "can work on multiple queues" do
120
121
122
Resque::Job.create(:high, GoodJob)
123
Resque::Job.create(:critical, GoodJob)
124
@@ -281,8 +277,6 @@ def self.perform
281
277
282
278
283
279
it "keeps track of how many jobs it has processed" do
284
285
286
280
287
288
@@ -308,8 +302,6 @@ def self.perform
308
302
309
303
310
304
it "keeps track of how many failures it has seen" do
311
312
313
305
314
306
315
307
0 commit comments