- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Guard-RSpec 在自述文件中提到可以通过指定自定义 cmd
使用 spring 运行规范:
guard :rspec, cmd: 'spring rspec' do
# ...
end
这曾经工作得很好,直到我做了一个 spring binstub --all
改变了我的 bin/spring
从...
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'spring' is installed as part of a gem, and
# this file is here to facilitate running it.
#
require 'pathname'
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)
require 'rubygems'
require 'bundler/setup'
load Gem.bin_path('spring', 'spring')
...到...
#!/usr/bin/env ruby
# This file loads spring without using Bundler, in order to be fast
# It gets overwritten when you run the `spring binstub` command
unless defined?(Spring)
require "rubygems"
require "bundler"
if match = Bundler.default_lockfile.read.match(/^GEM$.*?^ spring \((.*?)\)$.*?^$/m)
ENV["GEM_PATH"] = ([Bundler.bundle_path.to_s] + Gem.path).join(File::PATH_SEPARATOR)
ENV["GEM_HOME"] = ""
Gem.paths = ENV
gem "spring", match[1]
require "spring/binstub"
end
end
现在,当运行 guard
并按下回车键时,它只是告诉我:
[2] guard(main)> <<<<< pressing enter
14:35:35 - INFO - Run all
14:35:35 - INFO - Running all specs
然后出现“RSpec 结果 - 失败”之类的通知。
当像这样更改我的 Guardfile
并从 RSpec 的 cmd
中删除 spring
时...
guard :rspec, cmd: 'rspec' do
...规范再次运行,但显然没有使用 spring?
我还必须提到,当从 OSX 终端运行 spring
时,似乎什么也没有发生:
$ spring
$
那么:我必须如何配置 Guard 和 RSpec 才能使用 Spring?
更新
目前,我已将我的 bin/spring
可执行文件恢复到“binstubbing”之前的版本:
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'spring' is installed as part of a gem, and
# this file is here to facilitate running it.
#
require 'pathname'
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)
require 'rubygems'
require 'bundler/setup'
load Gem.bin_path('spring', 'spring')
Guardfile 看起来像这样:
guard :rspec, cmd: 'spring rspec' do ... end
这行得通,但我不认为它比运行裸 rspec
快。
所以我现在完全不确定如何使用 Spring 正确运行 RSpec - 使用 spring rspec
还是仅使用 rspec
?
最佳答案
我之前一直在研究这个问题。
Binstubs are wrapper scripts around executables. In Rails they live inside bin/. If you run spring binstub --all, your binstubs will be using Spring.
鉴于这个事实,你应该能够做这样的事情来将 Rspec 与 Spring 一起使用
guard :rspec, cmd: "bin/rspec" do
一个小测试来验证。确保您已经对 rspec 进行了 binstubbed。
bundle binstubs 'rspec-core'
验证 Spring 没有在 bin/rspec 中被引导。不应出现以下 block 。
[bin/rspec]
begin
load File.expand_path("../spring", __FILE__)
rescue LoadError
end
关闭 Spring 。运行 bin/rspec 并验证未触发 Spring。
spring stop
spring status
bin/rspec
spring status
如果 Spring 没有被触发,你应该看到这个
Spring is not running.
现在使用 Spring 引导您的 binstub。确保您已经捆绑安装了必要的 gem。
[ gem 文件]
group :development, :test do
gem "rspec-rails", "~> 3.0"
gem 'spring-commands-rspec'
...
end
[终端]
bundle install
更新 binstubs 以使用 Spring
spring binstub --all
验证 Spring 是否已在 bin/rspec 中引导。现在应该出现以下 block 。
[bin/rspec]
begin
load File.expand_path("../spring", __FILE__)
rescue LoadError
end
关闭 Spring 。运行 bin/rspec 并验证是否触发了 Spring。
spring stop
spring status
bin/rspec
spring status
现在检查在 spring 加载测试环境后测试是否运行得更快。
spring stop
time bin/rspec
[输出]
real 0m4.981s
user 0m0.144s
sys 0m0.032s
Spring 现在应该运行了。让我们看看它是否在发挥作用。
time bin/rspec
[输出]
real 0m0.831s
user 0m0.140s
sys 0m0.034s
是的。
最重要的是,如果您的 binstubs 已使用 Spring 进行引导,则调用 binstubs 将包括 Spring。当然,只有在 Spring 注册过的命令才能使用 Spring,这就是为什么早先将 spring-commands-rspec 包含在 Gemfile 中以支持 Rspec 的原因。
关于ruby-on-rails - Guard-RSpec 和 Spring : command `cmd: spring rspec` doesn't run the specs within Guard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22327463/
我想知道 Rspec 中的命令式和声明式步骤是什么。 这是 Rspec 书中的示例代码: Scenario: transfer money (declarative) Given I have $10
我正在尝试使用 Travis 设置 CI。但是我遇到了在 Travis 上失败但在本地没有的测试,甚至提供了相同的种子。 我认为种子运行相同,但现在我不确定,并想弄清楚它是否存在,所以我现在在哪里看。
RSpec 的文档提到了 --bisect option ,当运行时提供最小的复制,例如 rspec ./spec/calculator_10_spec.rb[1:1] ./spec/calculat
我有一些昂贵的测试设置,仅对我的规范中的少数示例是必需的,如果需要,它只需要运行一次。因为它很慢,所以我试图避免将它放在 before(:each) block 中,但 before(:all) 似乎
在我的 Gemfile 中 gem 'rspec-rails', '~> 3.3' 我发现,errors_on 匹配器移动到了另一个 gem:https://github.com/rspec/rspe
如果我运行此命令“rspec ./spec/requests/api/v1/password_reset_request_spec.rb”,此文件中的所有测试都会通过。 但是,当我运行“rspec”时
我花了 4 天时间尝试正确安装 Ruby on Rails,但我遇到了一个大问题。我第一次使用Linux(对我来说更舒服),但遇到问题后,我使用了Windows。令我惊讶的是,我在 Windows 上
我在这样的验证中测试了很多坏字符串: ['0', '3:a', 'xx:11', '-1', '-3:00', 'h', 'h2', 'h2h', 'm', 'm10', 'm10m', '2hm',
我的测试套件中有一部分运行着一堆非常慢的导入器。这些测试不需要经常运行(除非实际上正在处理导入器)所以我使用 Rspec 标签将它们分开:http://relishapp.com/rspec/rspe
Rspec 尝试在运行任何规范文件或整个测试套件结束时运行 Test::Unit 测试。它仍然没关系,因为我没有任何测试单元测试文件,但它尝试传递给 rspec 的命令行选项,因为它们将传递给 Tes
我有一段代码要测试: class User :destroy end 请举例测试关联代码的RSpec代码。 最佳答案 对我来说,这个变体效果很好: describe User do it { s
我正在尝试在 rails Controller 规范中重用一些通用代码。我对管理员用户和普通用户有不同的上下文。但是,对于特定操作,大部分行为是相同的,因此我尝试将这种常见行为提取到辅助函数中: de
我有两个类OneClass和 AnotherClass : class OneClass def initialize(*args) @another_member = AnotherCl
我有一个看起来像这样的模型: class Gist def self.create(options) post_response = Faraday.post do |request|
我是 RSPEC 的新手。我编写了一个名为 result_spec.rb 的 RSPEC 代码,如下所示: describe '#grouped_scores' do subject { result
我对字符串类进行了如下扩展: class String def last_character self[-1] end end 我将 string.rb 文件放在 lib 中,如下所示
我是 RSpec 的新手,我在其中编写了一个测试场景: my_object.should_not be_valid 它工作正常。但是,我想测试模型的特定属性是否无效。这样的 RSpec 行为是现成的吗
我正在尝试测试邮政编码属性的长度以确保其长度为 5 个字符。现在我正在测试以确保它不是空白,然后是 4 个字符太短,6 个字符太长。 有没有办法测试它是否正好是 5 个字符?到目前为止,我在网上或 r
我将rspec与电子邮件规范gem一起使用。我正在尝试做: last_delivery = ActionMailer::Base.deliveries.last last_delivery.body.
我创建了一个新的 rails 应用程序,并按照此处的 rspec-rails 安装说明进行操作 - https://github.com/rspec/rspec-rails然后我在我的 app/lib
我是一名优秀的程序员,十分优秀!