Skip to content

Commit ad83a57

Browse files
MitinPavelbinarylogic
authored andcommittedSep 2, 2009
Settings data was changed to clarify specs.
Signed-off-by: Ben Johnson <[email protected]>
1 parent 1dac8d4 commit ad83a57

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎spec/settings.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ setting1:
88
setting2: 5
99
setting3: <%= 5 * 5 %>
1010
name: test
11-
a:
12-
b:
13-
d: blah
14-
c:
15-
d: hah
1611

12+
language:
13+
haskell:
14+
paradigm: functional
15+
smalltalk:
16+
paradigm: object oriented

‎spec/settingslogic_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
end
3131

3232
it "should distinguish nested keys" do
33-
Settings.a.b.d.should == 'blah'
34-
Settings.a.c.d.should == 'hah'
33+
Settings.language.haskell.paradigm.should == 'functional'
34+
Settings.language.smalltalk.paradigm.should == 'object oriented'
3535
end
3636
end

0 commit comments

Comments
 (0)
Please sign in to comment.