File tree 1 file changed +11
-11
lines changed
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -83,24 +83,24 @@ def object.to_s
83
83
84
84
describe 'when logging multiple items on one call' do
85
85
define_feature <<-FEATURE
86
- Feature: Banana party
86
+ Feature: Logging multiple entries
87
87
88
- Scenario: Monkey eats banana
89
- When monkey eats banana
88
+ Scenario: Logging multiple entries
89
+ When logging multiple entries
90
90
FEATURE
91
91
92
92
define_steps do
93
- When ( '{word} {word} {word} ' ) do | subject , verb , complement |
94
- log "subject: #{ subject } " , "verb: #{ verb } " , "complement: #{ complement } "
93
+ When ( 'logging multiple entries ' ) do
94
+ log 'entry one' , 'entry two' , 'entry three'
95
95
end
96
96
end
97
97
98
- it 'logs each parameter independently' do
99
- expect ( @out . string ) . to include [
100
- ' subject: monkey ' ,
101
- ' verb: eats ' ,
102
- ' complement: banana '
103
- ] . join ( "\n " )
98
+ it 'logs each entry independently' do
99
+ expect ( @out . string ) . to include ( [
100
+ ' entry one ' ,
101
+ ' entry two ' ,
102
+ ' entry three '
103
+ ] . join ( "\n " ) )
104
104
end
105
105
end
106
106
You can’t perform that action at this time.
0 commit comments