producer-core/spec/spec_helper.rb
2013-08-06 17:29:45 +00:00

14 lines
296 B
Ruby

require 'producer/core'
require 'support/exit_helpers'
require 'support/fixtures_helpers'
require 'support/net_ssh_story_helpers'
RSpec.configure do |c|
c.include NetSSHStoryHelpers, type: :ssh
c.before(:each, type: :ssh) do
allow(remote).to receive(:session) { connection }
end
end