-
Notifications
You must be signed in to change notification settings - Fork 43
/
9_50.rb
50 lines (40 loc) · 1.05 KB
/
9_50.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# ...
# ...
class Wheel
attr_reader :rim, :tire
def initialize(rim, tire)
@rim = rim
@tire = tire
end
def width
rim + (tire * 2)
end
end
##########################################################
require "minitest"
require "minitest/reporters"
require "minitest/asciidoc_plugin"
Minitest::Reporters.use! Minitest::Reporters::Asciidoc.new
##########################################################
class WheelTest < Minitest::Test
def setup
@wheel = @object = Wheel.new(26, 1.5)
end
def test_implements_the_diameterizable_interface
assert_respond_to(@wheel, :width)
end
def test_calculates_diameter
# ...
wheel = Wheel.new(26, 1.5)
assert_in_delta(29,
wheel.width,
0.01)
end
end
Minitest.run
**[rubyclass]#WheelTest#**
**[green]#PASS#** __(0.00s)__ test_calculates_diameter
**[green]#PASS#** __(0.00s)__ test_implements_the_diameterizable_interface
Finished in 0.00018s
2 tests, 2 assertions, [green]#0 failures, 0 errors#, [yellow]#0 skips#