Sha256: 4a8f6c430ff44ceade30f0f318a2ac801aed5d444bfa7e7ea0c4a70600bdd26b
Contents?: true
Size: 501 Bytes
Versions: 36
Compression:
Stored size: 501 Bytes
Contents
describe KnapsackPro::TestFilePresenter do describe '.stringify_paths' do let(:test_file_paths) { ['a_spec.rb', 'b_spec.rb'] } subject { described_class.stringify_paths(test_file_paths) } it { should eq 'a_spec.rb b_spec.rb' } end describe '.paths' do let(:test_files) do [ { 'path' => 'a_spec.rb' }, { 'path' => 'b_spec.rb' }, ] end subject { described_class.paths(test_files) } it { should eq ['a_spec.rb', 'b_spec.rb'] } end end
Version data entries
36 entries across 36 versions & 1 rubygems