quicky 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile.lock +2 -2
- data/lib/quicky/timer.rb +20 -1
- data/lib/quicky/version.rb +1 -1
- data/test/test_basics.rb +11 -0
- metadata +2 -2
data/Gemfile.lock
CHANGED
data/lib/quicky/timer.rb
CHANGED
@@ -9,7 +9,7 @@ module Quicky
|
|
9
9
|
def loop(name, x, options={}, &blk)
|
10
10
|
if options[:warmup]
|
11
11
|
options[:warmup].times do |i|
|
12
|
-
puts "Warming up... #{i}"
|
12
|
+
#puts "Warming up... #{i}"
|
13
13
|
yield
|
14
14
|
end
|
15
15
|
end
|
@@ -18,6 +18,20 @@ module Quicky
|
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
+
# will loop for number of seconds
|
22
|
+
def loop_for(name, seconds, options={}, &blk)
|
23
|
+
end_at = Time.now + seconds
|
24
|
+
if options[:warmup]
|
25
|
+
options[:warmup].times do |i|
|
26
|
+
#puts "Warming up... #{i}"
|
27
|
+
yield
|
28
|
+
end
|
29
|
+
end
|
30
|
+
while Time.now < end_at
|
31
|
+
time(name, options, &blk)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
21
35
|
def time(name, options={}, &blk)
|
22
36
|
t = Time.now
|
23
37
|
yield
|
@@ -58,6 +72,11 @@ module Quicky
|
|
58
72
|
def total_duration
|
59
73
|
@total_duration
|
60
74
|
end
|
75
|
+
|
76
|
+
def count
|
77
|
+
@collector.size
|
78
|
+
end
|
79
|
+
|
61
80
|
end
|
62
81
|
|
63
82
|
class TimeResult
|
data/lib/quicky/version.rb
CHANGED
data/test/test_basics.rb
CHANGED
@@ -28,6 +28,17 @@ class TestBasics < TestBase
|
|
28
28
|
assert quicky.results(:test2).duration >= 1 && quicky.results(:test2).duration < 2
|
29
29
|
assert quicky.results(:test2).total_duration >= 10
|
30
30
|
|
31
|
+
quicky = Quicky::Timer.new
|
32
|
+
quicky.loop_for(:test3, 10) do |i|
|
33
|
+
puts 'sleeping'
|
34
|
+
sleep 0.5
|
35
|
+
end
|
36
|
+
p quicky.results(:test3).inspect
|
37
|
+
p quicky.results(:test3).duration
|
38
|
+
p quicky.results.count
|
39
|
+
assert quicky.results(:test3).duration >= 0.5 && quicky.results(:test3).duration < 1
|
40
|
+
assert quicky.results(:test3).total_duration >= 5
|
41
|
+
|
31
42
|
end
|
32
43
|
|
33
44
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quicky
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-07-
|
12
|
+
date: 2012-07-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: test-unit
|