summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
blob: 58036ccb01641ed014668082ee6857c064bdf424 (plain)
1
2
3
4
5
6
7
8
9
10
11
# $:.unshift File.expand_path('../../lib', __FILE__)
require 'rspec'
require 'wmi-lite'

RSpec.configure do |config|
  config.include(RSpec::Matchers)
  config.filter_run :focus => true
  config.filter_run_excluding :windows_only => true if ! (RUBY_PLATFORM =~ /mswin|mingw32|windows/)
  config.run_all_when_everything_filtered = true
end