support globs in file filters, fixes #29
This commit is contained in:
parent
edd503f262
commit
1d3991f52e
@ -99,7 +99,7 @@ module Jasmine
|
|||||||
end
|
end
|
||||||
|
|
||||||
def spec_filter
|
def spec_filter
|
||||||
@options[:only] || []
|
@spec_filter ||= (@options[:only] ? @options[:only].collect { |path| Dir[path] }.flatten : [])
|
||||||
end
|
end
|
||||||
|
|
||||||
def use_config!
|
def use_config!
|
||||||
|
@ -68,7 +68,7 @@ describe Jasmine::FilesList do
|
|||||||
} }
|
} }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
%w{one_spec.js two_spec.js}.each do |file|
|
%w{one_spec.js two_spec.js whatever.js}.each do |file|
|
||||||
File.open(File.join(spec_dir, file), 'w')
|
File.open(File.join(spec_dir, file), 'w')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -98,6 +98,21 @@ describe Jasmine::FilesList do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context 'filter with a glob' do
|
||||||
|
let(:filter) { [ File.expand_path('spec/one*') ] }
|
||||||
|
|
||||||
|
it 'should return all files for files' do
|
||||||
|
files_list.files.any? { |file| file['two_spec.js'] }.should be_true
|
||||||
|
files_list.filtered?.should be_true
|
||||||
|
files_list.should_not have_spec_outside_scope
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'should return only filtered files for filtered_files' do
|
||||||
|
files_list.filtered_files.any? { |file| file['two_spec.js'] }.should be_false
|
||||||
|
files_list.should_not have_spec_outside_scope
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context 'filter with a file that is not even there' do
|
context 'filter with a file that is not even there' do
|
||||||
let(:filter) { [ File.expand_path('spec/whatever.js') ] }
|
let(:filter) { [ File.expand_path('spec/whatever.js') ] }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user