Method: AppMap::Depends::TestFileInspector::TestReport#to_s
- Defined in:
- lib/appmap/depends/test_file_inspector.rb
#to_s ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'lib/appmap/depends/test_file_inspector.rb', line 11 def to_s report = [] report << "Added test files : #{added.to_a.join(' ')}" unless added.empty? report << "Removed test files : #{removed.to_a.join(' ')}" unless removed.empty? report << "Changed test files : #{changed.to_a.join(' ')}" unless changed.empty? report << "Failed test files : #{failed.to_a.join(' ')}" unless failed.empty? report.compact.join("\n") end |