6 lines
107 B
Ruby
6 lines
107 B
Ruby
|
namespace :gitlab do
|
||
|
desc "GITLAB | Run both cucumber & rspec"
|
||
|
task :test => ['cucumber', 'spec']
|
||
|
end
|
||
|
|