class MinitestBender::States::Passing

Constants

COLOR
GROUP_LABEL
ICON
LABEL

Public Instance Methods

detail_lines(_result) click to toggle source
# File lib/minitest-bender/states/passing.rb, line 20
def detail_lines(_result)
  []
end
detail_lines_without_header(_result) click to toggle source
# File lib/minitest-bender/states/passing.rb, line 24
def detail_lines_without_header(_result)
  []
end
formatted_message(_result) click to toggle source
# File lib/minitest-bender/states/passing.rb, line 12
def formatted_message(_result)
  ''
end
print_details(_io) click to toggle source
summary_message() click to toggle source
# File lib/minitest-bender/states/passing.rb, line 28
def summary_message
  return '' if results.empty?
  colored("#{results.size} passed")
end