class KnapsackPro::TestFilePresenter
Public Class Methods
Source
# File lib/knapsack_pro/test_file_presenter.rb, line 12 def self.paths(test_files) test_files.map { |t| t['path'] } end
Source
# File lib/knapsack_pro/test_file_presenter.rb, line 5 def self.stringify_paths(test_file_paths) test_file_paths .map do |test_file| %{"#{test_file}"} end.join(' ') end