worker_roulette 0.1.7 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,14 +0,0 @@
1
- require 'spec_helper'
2
- module WorkerRoulette
3
- describe WorkerRoulette do
4
- it "should not explode if redis_config is called before start" do
5
- WorkerRoulette.instance_variable_set("@redis_config", nil)
6
- expect {WorkerRoulette.redis_config}.not_to raise_error
7
- end
8
-
9
- it "should not explode if pool_size is called before start" do
10
- WorkerRoulette.instance_variable_set("@pool_config", nil)
11
- expect {WorkerRoulette.pool_size}.not_to raise_error
12
- end
13
- end
14
- end