Created
June 24, 2014 17:21
-
-
Save slyness/34baffd1b47ef8b0f177 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| guard :rspec, spec_paths: ["test/unit"] do | |
| watch(%r{^test/unit/.+_spec\.rb$}) | |
| watch(%r{^(libraries|definitions|providers|recipes|resources)/(.+)\.rb$}) { |m| "test/unit/#{m[1]}/#{m[2]}_spec.rb" } | |
| watch("test/unit/spec_helper.rb") { "test/unit" } | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment