4

我已经安装了 'guard' 和 'guard-rspec',我还配置了 Guardfile(以观察 'app/views' 的变化)但是当我运行 'bundle exec guard' 时,我总是得到这个:

  vagrant@vagrant-debian-squeeze:/vagrant/sample_app$ bundle exec guard
  Guard could not detect any of the supported notification libraries.
  Guard is now watching at '/vagrant/sample_app'
  Guard::RSpec is running, with RSpec 2!
  Running all specs
  ........

  Finished in 0.97359 seconds
  8 examples, 0 failures
  >

它已经完成了守卫控制台提示,如果我从'app/views/'(例如app/view/static_pages/home.html.erb)编辑一些文件并保存它,守卫没有显示任何规范输出,仍然等待对于一些控制台命令。

我想它应该在保存监视文件后显示一些 rspec 输出。

宝石文件:

source 'https://rubygems.org'

gem 'rails', '3.2.3'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

group :development, :test do
  gem 'sqlite3', '1.3.5'
  gem 'rspec-rails', '2.9.0'
  gem 'guard-rspec', '0.5.5'
  gem 'guard'
end

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '3.2.4'
  gem 'coffee-rails', '3.2.2'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  gem 'therubyracer'

  gem 'uglifier', '1.2.3'
end

gem 'jquery-rails', '2.0.0'

group :test do
  gem 'capybara', '1.1.2'
  # gem 'rb-inotify', '0.8.8'
  # gem 'libnotify', '0.5.9'
end

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

# Use unicorn as the app server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'

保护文件:

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

require 'active_support/core_ext'

guard 'rspec', :version => 2, :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" }

  # Rails example
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^app/(.+)\.rb$})                           { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r{^app/(.*)(\.erb|\.haml)$})                 { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
  watch(%r{^lib/(.+)\.rb$})                           { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch(%r{^app/controllers/(.+)_(controller)\.rb$})  { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb", (m[1][/_pages/] ? "spec/requests/#{m[1]}_spec.rb" : "spec/requests/#{m[1].singularize}_pages_spec.rb")]}
  watch(%r{^spec/support/(.+)\.rb$})                  { "spec" }
  watch('spec/spec_helper.rb')                        { "spec" }
  watch('config/routes.rb')                           { "spec/routing" }
  watch('app/controllers/application_controller.rb')  { "spec/controllers" }
  # Capybara request specs
  watch(%r{^app/views/(.+)/}) do |m|
    "spec/requests/#{m[1].singularize}_pages_spec.rb"
  end
end

'app/views' 的守望规则是

  watch(%r{^app/views/(.+)/}) do |m|
    "spec/requests/#{m[1].singularize}_pages_spec.rb"
  end

运行环境:

Debian-Squeeze 32 位 Vagrant 盒子

顺便提一句。我正在学习 Rails 表单ruby​​-on-rails-tutorial-book并坚持使用 Guard 进行自动化测试

任何帮助表示感谢,谢谢。

4

4 回答 4

9

Guard 不会接收 Vagrant 主机(在我的例子中是 Ubuntu)所做的文件系统更改。

您可以通过-p选项强制警卫轮询文件系统(增加 CPU 使用率,不断撞击硬盘,并可能导致您的笔记本电脑温度升高 - 所以并不理想,但它可以工作)

bundle exec guard -p
于 2012-08-25T13:58:06.633 回答
0

试试这个(从 Guardfile 生成guard init):

watch(%r{^app/views/(.+)/}) { |m| "spec/requests/#{m[1]}_spec.rb" }

正则表达式是正确的,但是块中的文件名 'spec/requests/#{m[1].singularize}_pages_spec.rb' 似乎会guard导致静默失败,就好像表达式不匹配一样。我不知道为什么。

于 2012-05-06T21:08:38.280 回答
0

取消注释您的测试组中的通知库,使您的 Gemfile 看起来像。

group :test do
  gem 'capybara', '1.1.2'
  gem 'rb-inotify', '0.8.8'
  gem 'libnotify', '0.5.9'
end

那应该这样做。享受 Rails 教程的乐趣,太棒了!

编辑:假设您正在运行 Linux。OS X 和 Windows 有自己的测试库。继续阅读教程,你会看到的。

于 2012-04-27T17:05:01.107 回答
-3

我已经删除了 Guard 并安装了 Watchr,它似乎使他的工作正常。这帮助了我:

如何轨道 3 和 rspec 2

于 2012-04-28T12:07:03.370 回答