forked from shokwave/pathfinder-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_hp.rb
47 lines (43 loc) · 1.01 KB
/
test_hp.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
require 'test/unit'
require_relative '../lib/hp'
class TestHP < Test::Unit::TestCase
def setup
@test_hp = Test_HP.new 12, 4, 8
@test_max_hp = @test_hp.maxhp
end
def teardown
@test_hp = nil
@test_max_hp = nil
end
def test_can_be_hurt
@test_hp.hurt 10
assert_equal(@test_max_hp - 10, @test_hp.hp)
end
def test_can_be_healed
@test_hp.hurt 15
@test_hp.heal 10
assert_equal(@test_max_hp - 5, @test_hp.hp)
end
def test_no_overheal
@test_hp.hurt 5
@test_hp.heal 20
assert_equal(@test_max_hp, @test_hp.hp)
end
def test_temporary_hp
@test_hp.temp_hp 15
assert_equal(@test_max_hp + 15, @test_hp.hp)
end
def test_temporary_hp_not_exhausted_works
@test_hp.temp_hp 15
@test_hp.hurt 10
@test_hp.temp_hp
assert_equal(@test_max_hp, @test_hp.hp)
end
def test_temporary_hp_exhausted_works
@test_hp.temp_hp 15
@test_hp.hurt 20
@test_hp.temp_hp
assert_equal(@test_max_hp - 5, @test_hp.hp)
end
# end of class
end