Skip to content

Commit 7a1040c

Browse files
mxswdsteveklabnik
authored andcommitted
Revert "Skip failing tests."
This reverts commit 6b9fa64.
1 parent b3f5acf commit 7a1040c

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

test/multi_queue_test.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
end
1717

1818
it "blocks on pop" do
19-
skip "not quite working yet"
20-
2119
foo = Resque::Queue.new 'foo', redis, coder
2220
bar = Resque::Queue.new 'bar', redis, coder
2321
queue = Resque::MultiQueue.new([foo, bar], redis)
@@ -51,8 +49,6 @@
5149
end
5250

5351
it "blocks forever on pop" do
54-
skip "not quite working yet"
55-
5652
foo = Resque::Queue.new 'foo', redis, coder
5753
bar = Resque::Queue.new 'bar', redis, coder
5854
queue = Resque::MultiQueue.new([foo, bar], redis)
@@ -62,8 +58,6 @@
6258
end
6359

6460
it "blocking pop processes queues in the order given" do
65-
skip "not quite working yet"
66-
6761
foo = Resque::Queue.new 'foo', redis, coder
6862
bar = Resque::Queue.new 'bar', redis, coder
6963
baz = Resque::Queue.new 'baz', redis, coder

test/resque_test.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,6 @@
228228
end
229229

230230
it "keeps stats" do
231-
skip "not quite working yet"
232-
233231
Resque::Job.create(:jobs, SomeJob, 20, '/tmp')
234232
Resque::Job.create(:jobs, BadJob)
235233
Resque::Job.create(:jobs, GoodJob)

test/worker_test.rb

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,6 @@ def self.perform
100100
end
101101

102102
it "catches exceptional jobs" do
103-
skip "not quite working yet"
104-
105103
Resque::Job.create(:jobs, BadJob)
106104
Resque::Job.create(:jobs, BadJob)
107105
@worker.process
@@ -117,8 +115,6 @@ def self.perform
117115
end
118116

119117
it "can work on multiple queues" do
120-
skip "not quite working yet"
121-
122118
Resque::Job.create(:high, GoodJob)
123119
Resque::Job.create(:critical, GoodJob)
124120

@@ -281,8 +277,6 @@ def self.perform
281277
end
282278

283279
it "keeps track of how many jobs it has processed" do
284-
skip "not quite working yet"
285-
286280
Resque::Job.create(:jobs, BadJob)
287281
Resque::Job.create(:jobs, BadJob)
288282

@@ -308,8 +302,6 @@ def self.perform
308302
end
309303

310304
it "keeps track of how many failures it has seen" do
311-
skip "not quite working yet"
312-
313305
Resque::Job.create(:jobs, BadJob)
314306
Resque::Job.create(:jobs, BadJob)
315307

0 commit comments

Comments
 (0)