diff options
author | randx <dmitriy.zaporozhets@gmail.com> | 2012-09-15 01:00:59 +0300 |
---|---|---|
committer | randx <dmitriy.zaporozhets@gmail.com> | 2012-09-15 01:00:59 +0300 |
commit | a82977c64843aa177498f1a715121ae6e38bc323 (patch) | |
tree | ddccf4c68c46935d4dffa82fdb5c663bd5c65ac1 /Guardfile | |
parent | 0d66cf2a38540056b6400c526e62ccc0cbc3144d (diff) | |
download | gitlab-ce-a82977c64843aa177498f1a715121ae6e38bc323.tar.gz |
A bit of test refactoring
Diffstat (limited to 'Guardfile')
-rw-r--r-- | Guardfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Guardfile b/Guardfile index 0eea2ad9244..50a10af9a31 100644 --- a/Guardfile +++ b/Guardfile @@ -1,7 +1,7 @@ # A sample Guardfile # More info at https://github.com/guard/guard#readme -guard 'rspec', :version => 2, :all_on_start => false do +guard 'rspec', :version => 2, :all_on_start => false, :all_after_pass => false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } |