mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
12 lines
252 B
Ruby
12 lines
252 B
Ruby
require 'serverspec'
|
|
|
|
# :backend can be either :exec or :ssh
|
|
# since we are running local we use :exec
|
|
set :backend, :exec
|
|
|
|
RSpec.configure do |c|
|
|
c.before :all do
|
|
c.path = '/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin'
|
|
end
|
|
end
|