public
Fork of notahat/machinist
Description: A Rails plugin to help populate your database with data for tests.
Homepage:
Clone URL: git://github.com/technoweenie/machinist.git
machinist / .autotest
100644 8 lines (6 sloc) 0.298 kb
1
2
3
4
5
6
7
8
Autotest.add_hook :initialize do |at|
  at.clear_mappings
  
  at.add_mapping(%r%^spec/(.*)_spec.rb$%) {|filename, _| filename }
  at.add_mapping(%r%^lib/(.*).rb$%) {|_, match| "spec/#{match}_spec.rb" }
  at.add_mapping(%r%^spec/spec_helper.rb$%) { at.files_matching(%r%^spec/(.*)_spec.rb$%) }
end