Module: RSpec::Specify::InstanceMethods
- Defined in:
- lib/specify/rspec/documentation_formatter.rb
Instance Method Summary collapse
- #example_passed_with_steps(notification) ⇒ Object
- #example_started(notification) ⇒ Object
- #example_started_with_steps(notification) ⇒ Object
- #example_step_failed(notification) ⇒ Object
- #example_step_passed(notification) ⇒ Object
- #example_step_pending(notification) ⇒ Object
Instance Method Details
#example_passed_with_steps(notification) ⇒ Object
66 67 68 |
# File 'lib/specify/rspec/documentation_formatter.rb', line 66 def example_passed_with_steps(notification) example_passed_without_steps(notification) unless notification.example.[:with_steps] end |
#example_started(notification) ⇒ Object
18 19 |
# File 'lib/specify/rspec/documentation_formatter.rb', line 18 def example_started(notification) end |
#example_started_with_steps(notification) ⇒ Object
57 58 59 60 61 62 63 64 |
# File 'lib/specify/rspec/documentation_formatter.rb', line 57 def example_started_with_steps(notification) example_started_without_steps(notification) if notification.example.[:with_steps] = "#{current_indentation}#{notification.example.description}" output.puts Core::Formatters::ConsoleCodes.wrap(, :default) end end |
#example_step_failed(notification) ⇒ Object
31 32 33 34 35 36 37 38 39 |
# File 'lib/specify/rspec/documentation_formatter.rb', line 31 def example_step_failed(notification) no_keyword_display = %w(specify example it rule fact step test) keyword = notification.type.to_s = "#{current_indentation} #{keyword.capitalize} #{notification.message} (FAILED)" unless no_keyword_display.include?(keyword) = "#{current_indentation} #{notification.message} (FAILED)" if no_keyword_display.include?(keyword) output.puts Core::Formatters::ConsoleCodes.wrap(, :failure) end |
#example_step_passed(notification) ⇒ Object
21 22 23 24 25 26 27 28 29 |
# File 'lib/specify/rspec/documentation_formatter.rb', line 21 def example_step_passed(notification) no_keyword_display = %w(specify example it rule fact step test) keyword = notification.type.to_s = "#{current_indentation} #{keyword.capitalize} #{notification.message}" unless no_keyword_display.include?(keyword) = "#{current_indentation} #{notification.message}" if no_keyword_display.include?(keyword) output.puts Core::Formatters::ConsoleCodes.wrap(, :success) end |
#example_step_pending(notification) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/specify/rspec/documentation_formatter.rb', line 41 def example_step_pending(notification) no_keyword_display = %w(specify example it rule fact step test) keyword = notification.type.to_s = "#{current_indentation} #{keyword.capitalize} #{notification.message}" unless no_keyword_display.include?(keyword) = "#{current_indentation} #{notification.message}" if no_keyword_display.include?(keyword) if notification.[:pending] && notification.[:pending] != true << " (PENDING: #{notification.options[:pending]})" else << ' (PENDING)' end output.puts Core::Formatters::ConsoleCodes.wrap(, :pending) end |