我是 ruby/rails/rspec 等的新手。
使用 rspec 2.13.1,我想创建一个模块,该模块的方法可以从我的测试中调用,从而导致随后调用 RSpec::Core::ExampleGroup 的“it”方法。
我的模块:
require 'spec_helper'
module TestHelper
def invalid_without(symbols)
symbols = symbols.is_a?(Array) ? symbols : [symbols]
symbols.each do |symbol|
it "should not be valid without #{symbol.to_s.humanize}" do
# Gonna nullify the subject's 'symbol' attribute here
# and expect to have error on it
end
end
end
end
上面的代码被添加到:
spec/support/test_helper.rb
在我的 spec_helper.rb 中,在 RSpec.configure 块中,我添加了以下内容:
config.include TestHelper
现在,在测试中,我执行以下操作:
describe Foo
context "when invalid" do
invalid_without [:name, :surname]
end
end
运行这个,我得到:
undefined method `invalid_without' for #<Class:0x007fdaf1821030> (NoMethodError)
任何帮助表示赞赏..