summaryrefslogtreecommitdiffstats
path: root/spec/unit/util/run_mode_spec.rb
diff options
context:
space:
mode:
authorJosh Cooper <josh@puppetlabs.com>2011-07-18 23:17:36 -0700
committerJacob Helwig <jacob@puppetlabs.com>2011-08-19 13:48:29 -0700
commitbdc9790b4e3a4312f56cb66cf550f7b98ce910e5 (patch)
tree1af5ad3b390aafc16b346ea863092d08e0a35fc4 /spec/unit/util/run_mode_spec.rb
parentc26f3e5f79fa2caa17d18be41e32871ac09b1dc4 (diff)
downloadpuppet-bdc9790b4e3a4312f56cb66cf550f7b98ce910e5.tar.gz
puppet-bdc9790b4e3a4312f56cb66cf550f7b98ce910e5.tar.xz
puppet-bdc9790b4e3a4312f56cb66cf550f7b98ce910e5.zip
Maint: Tagged spec tests that are known to fail on Windows
Many spec tests fail on Windows because there are no default providers implemented for Windows yet. Several others are failing due to Puppet::Util::Cacher not working correctly, so for now the tests that are known to fail are marked with :fails_on_windows => true. To skip these tests, you can run: rspec --tag ~fails_on_windows spec Reviewed-by: Jacob Helwig <jacob@puppetlabs.com> (cherry picked from commit 255c5b4663bd389d2c87a2d39ec350034421a6f0) Conflicts: spec/unit/resource/catalog_spec.rb
Diffstat (limited to 'spec/unit/util/run_mode_spec.rb')
-rwxr-xr-xspec/unit/util/run_mode_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/util/run_mode_spec.rb b/spec/unit/util/run_mode_spec.rb
index c8d2b31f6..883ee1206 100755
--- a/spec/unit/util/run_mode_spec.rb
+++ b/spec/unit/util/run_mode_spec.rb
@@ -1,7 +1,7 @@
#!/usr/bin/env rspec
require 'spec_helper'
-describe Puppet::Util::RunMode do
+describe Puppet::Util::RunMode, :fails_on_windows => true do
before do
@run_mode = Puppet::Util::RunMode.new('fake')
end