提交 bf0ec009 编写于 作者: R Robert Speicher

Expand QA spec file paths to allow running bin/qa from anywhere

上级 7095c2bf
......@@ -22,7 +22,12 @@ module QA
Specs::Runner.perform do |specs|
specs.tty = true
specs.tags = self.class.focus
specs.files = files.any? ? files : 'qa/specs/features'
specs.files =
if files.any?
files
else
File.expand_path('../../specs/features', __dir__)
end
end
end
end
......
......@@ -8,7 +8,7 @@ module QA
def initialize
@tty = false
@tags = []
@files = ['qa/specs/features']
@files = [File.expand_path('./features', __dir__)]
end
def perform
......
......@@ -29,7 +29,8 @@ describe QA::Scenario::Test::Instance do
it 'should call runner with default arguments' do
subject.perform("test")
expect(runner).to have_received(:files=).with('qa/specs/features')
expect(runner).to have_received(:files=)
.with(File.expand_path('../../../qa/specs/features', __dir__))
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册