Class: RubyEventStore::RSpec::StepByStepFailureMessageFormatter
- Inherits:
-
Object
- Object
- RubyEventStore::RSpec::StepByStepFailureMessageFormatter
show all
- Defined in:
- lib/ruby_event_store/rspec/step_by_step_failure_message_formatter.rb
Defined Under Namespace
Classes: HavePublished, Lingo
Instance Method Summary
collapse
Instance Method Details
#apply(differ) ⇒ Object
215
216
217
|
# File 'lib/ruby_event_store/rspec/step_by_step_failure_message_formatter.rb', line 215
def apply(differ)
HavePublished.new(differ, Lingo.new("applied"))
end
|
#have_applied(differ) ⇒ Object
211
212
213
|
# File 'lib/ruby_event_store/rspec/step_by_step_failure_message_formatter.rb', line 211
def have_applied(differ)
HavePublished.new(differ, Lingo.new("applied"))
end
|
#have_published(differ) ⇒ Object
203
204
205
|
# File 'lib/ruby_event_store/rspec/step_by_step_failure_message_formatter.rb', line 203
def have_published(differ)
HavePublished.new(differ, Lingo.new("published"))
end
|
#publish(differ) ⇒ Object
207
208
209
|
# File 'lib/ruby_event_store/rspec/step_by_step_failure_message_formatter.rb', line 207
def publish(differ)
HavePublished.new(differ, Lingo.new("published"))
end
|