forked from davidyang/tddblackjack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperson_spec.rb
50 lines (38 loc) · 799 Bytes
/
person_spec.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
require './black_jack'
require './person'
describe Person do
it "can be initialized with an optional name argument" do
pending
end
it "should be able to set an strategy attribute" do
pending
end
it "holds cards in an array called cards" do
pending
end
it "can get a total point value of its cards using .total" do
pending
end
it "knows if it has blackjack using .blackjack?" do
pending
end
it "knows it it has busted using .busted?" do
pending
end
it "knows how to use a soft ace" do
pending
end
it "prints out its name and card total using .to_s" do
pending
end
end
describe Player do
it "is a subclass of Person" do
pending
end
end
describe Dealer do
it "is a subclass of Person" do
pending
end
end