summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
blob: 762363cab56f53154aa1fb8e88a75701f305c43d (plain)
1
2
3
4
5
6
7
8
9
10
# $:.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 unless RUBY_PLATFORM =~ /mswin|mingw32|windows/
  config.run_all_when_everything_filtered = true
end