We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed0cf93 commit db98c1eCopy full SHA for db98c1e
2 files changed
.travis.yml
@@ -7,3 +7,7 @@ rvm:
7
- 2.2.0
8
- ruby-head
9
- jruby-head
10
+
11
+install:
12
+ - gem install bundler
13
+ - bundle install --jobs=3 --retry=3
test/test_helper.rb
@@ -2,7 +2,7 @@
2
#http://net.tutsplus.com/tutorials/ruby/ruby-for-newbies-testing-with-rspec/
3
require_relative '../lib/zenoss'
4
require 'vcr'
5
-
+require 'webmock'
6
ZENOSS_URL = ENV['zenoss_client_url'] || "http://localhost:8080/zport/dmd"
ZENOSS_USER = ENV['zenoss_client_username'] || "admin"
@@ -12,8 +12,8 @@
ZENOSS_VERSION = ENV['zenoss_version'] || '4.2.5'
14
15
16
# VCR
+WebMock.enable!
17
VCR.configure do |config|
18
config.cassette_library_dir = "test/fixtures/vcr_cassettes"
19
config.hook_into :webmock
0 commit comments