waitforit 0.0.1.pre1 → 0.0.1.pre2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/waitforit.rb +1 -1
- data/spec/waitforit_spec.rb +15 -11
- data/waitforit.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.1.
|
1
|
+
0.0.1.pre2
|
data/lib/waitforit.rb
CHANGED
@@ -12,7 +12,7 @@ class Fixnum
|
|
12
12
|
end
|
13
13
|
|
14
14
|
def wait_until opts={}
|
15
|
-
opts
|
15
|
+
opts = {:timeout_after => 2.seconds,:retry_every => 0.1.seconds}.merge(opts)
|
16
16
|
start_time = Time.now
|
17
17
|
until Time.now > start_time + opts[:timeout_after]
|
18
18
|
return if yield == true
|
data/spec/waitforit_spec.rb
CHANGED
@@ -9,25 +9,29 @@ describe 'waitforit' do
|
|
9
9
|
end
|
10
10
|
end_time.should be < Time.now
|
11
11
|
end
|
12
|
-
|
12
|
+
|
13
13
|
it 'should throw an exception if when the prescribed action does not happen in time' do
|
14
|
-
expect{wait_until{false}}.to raise_error RuntimeError
|
14
|
+
expect { wait_until { false } }.to raise_error RuntimeError
|
15
15
|
end
|
16
|
-
|
16
|
+
|
17
17
|
it 'should keep trying for a specified period' do
|
18
18
|
start_time = Time.now
|
19
19
|
wait_time = 1.second
|
20
|
-
|
21
|
-
lambda{wait_until(:timeout_after => wait_time){false}}
|
22
|
-
|
23
|
-
(start_time + wait_time).should be >= Time.now
|
20
|
+
|
21
|
+
lambda { wait_until(:timeout_after => wait_time) { false } }
|
22
|
+
|
23
|
+
(start_time + wait_time).should be >= Time.now
|
24
24
|
end
|
25
|
-
|
25
|
+
|
26
26
|
it 'should be possible for user to supply the retry time' do
|
27
27
|
count = 0
|
28
|
-
|
29
|
-
|
30
|
-
|
28
|
+
|
29
|
+
begin
|
30
|
+
wait_until(:timeout_after => 1.second, :retry_every => 0.5.seconds) do
|
31
|
+
count += 1
|
32
|
+
end
|
33
|
+
rescue
|
34
|
+
count.should == 2
|
31
35
|
end
|
32
36
|
end
|
33
37
|
end
|
data/waitforit.gemspec
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: waitforit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease: 6
|
5
|
-
version: 0.0.1.
|
5
|
+
version: 0.0.1.pre2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- lashd
|
@@ -78,7 +78,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
78
|
requirements:
|
79
79
|
- - ">="
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
hash:
|
81
|
+
hash: 2684531027166851086
|
82
82
|
segments:
|
83
83
|
- 0
|
84
84
|
version: "0"
|