summaryrefslogtreecommitdiffstats
path: root/autotest
diff options
context:
space:
mode:
authorIan Taylor <ian@lorf.org>2009-06-05 12:38:35 -0400
committerJames Turnbull <james@lovedthanlost.net>2009-06-06 09:11:28 +1000
commit41ce18cc8ea239d1633fc6cd9e9f599957a82e74 (patch)
tree9d398b4e3e6d726a174b5b57094c7dd6749ccf0e /autotest
parentf3b40923605420f774dac298fb1708de180c0a81 (diff)
downloadpuppet-41ce18cc8ea239d1633fc6cd9e9f599957a82e74.tar.gz
puppet-41ce18cc8ea239d1633fc6cd9e9f599957a82e74.tar.xz
puppet-41ce18cc8ea239d1633fc6cd9e9f599957a82e74.zip
Changed tabs to spaces without interfering with indentation or alignment
Diffstat (limited to 'autotest')
-rw-r--r--autotest/puppet_rspec.rb26
1 files changed, 13 insertions, 13 deletions
diff --git a/autotest/puppet_rspec.rb b/autotest/puppet_rspec.rb
index 2bc2fbb2d..55695000a 100644
--- a/autotest/puppet_rspec.rb
+++ b/autotest/puppet_rspec.rb
@@ -16,30 +16,30 @@ Autotest.add_hook :initialize do |at|
# force a complete re-run for all of these:
- # main puppet lib
- at.add_mapping(%r!^lib/puppet\.rb$!) { |filename, _|
+ # main puppet lib
+ at.add_mapping(%r!^lib/puppet\.rb$!) { |filename, _|
at.files_matching %r!spec/(unit|integration)/.*\.rb!
- }
+ }
- # the spec_helper
- at.add_mapping(%r!^spec/spec_helper\.rb$!) { |filename, _|
+ # the spec_helper
+ at.add_mapping(%r!^spec/spec_helper\.rb$!) { |filename, _|
at.files_matching %r!spec/(unit|integration)/.*\.rb!
- }
+ }
- # the puppet test libraries
- at.add_mapping(%r!^test/lib/puppettest/.*!) { |filename, _|
+ # the puppet test libraries
+ at.add_mapping(%r!^test/lib/puppettest/.*!) { |filename, _|
at.files_matching %r!spec/(unit|integration)/.*\.rb!
- }
+ }
# the puppet spec libraries
- at.add_mapping(%r!^spec/lib/spec.*!) { |filename, _|
+ at.add_mapping(%r!^spec/lib/spec.*!) { |filename, _|
at.files_matching %r!spec/(unit|integration)/.*\.rb!
- }
+ }
# the monkey patches for rspec
- at.add_mapping(%r!^spec/lib/monkey_patches/.*!) { |filename, _|
+ at.add_mapping(%r!^spec/lib/monkey_patches/.*!) { |filename, _|
at.files_matching %r!spec/(unit|integration)/.*\.rb!
- }
+ }
end
# a place for overrides when necessary.