2

我是 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)

任何帮助表示赞赏..

4

1 回答 1

4

使用共享示例组

shared_examples_for "a valid array" do |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

describe Foo do
  it_should_behave_like "a valid array", [:name, :surname]
end
于 2013-04-17T21:09:42.253 回答