producer-core/spec/spec_helper.rb
2013-08-06 18:34:53 +00:00

16 lines
344 B
Ruby

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