autotest, 让你的rspec测试自动化(三)--Linux

1.保证安装了rspec,rspec-rails

2.安装ZenTest
sudo gem install ZenTest


3.创建并编辑~/.autotest
Autotest.add_hook :initialize do |at|
  %w{.svn .hg .git vendor}.each {|exception| at.add_exception(exception)}
end


4.运行
script/autospec

你可能感兴趣的:(linux,SVN,Ruby,Rails,rspec)