File: test_helper.rb

package info (click to toggle)
ruby-rbvmomi 1.8.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,756 kB
  • sloc: ruby: 5,590; sh: 36; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
coverage_tool = :simplecov if ENV['RBVMOMI_COVERAGE']

case coverage_tool
when :simplecov
  require 'simplecov'
  SimpleCov.start
when :cover_me
  require 'cover_me'
end

require 'rbvmomi'
VIM = RbVmomi::VIM

require 'test/unit'