rspec w / IronRuby缺少be_ *方法

时间:2012-07-23 15:14:24

标签: ruby rspec ironruby

我的IronRuby安装的rspec gem似乎缺少自动化的be_ *方法助手。例如,以下代码生成未定义的方法错误:

require 'rubygems'
require 'rspec'

x = 7
x.should == 7 # works
x.nonzero?.should == 7 #works
x.should be_nonzero # undefined method `be_nonzero' for main:Object

我使用igem来安装rspec gem。以下是我安装的宝石列表:

bewildr (0.1.14)
builder (3.0.0)
cucumber (0.6.3)
diff-lcs (1.1.3)
iron-term-ansicolor (0.0.3)
json_pure (1.7.3)
polyglot (0.3.3)
rspec (2.11.0)
rspec-core (2.11.1)
rspec-expectations (2.11.1)
rspec-mocks (2.11.1)
term-ansicolor (1.0.7)
treetop (1.4.10)

知道我在这里缺少什么吗?

2 个答案:

答案 0 :(得分:2)

RSpec匹配器通常仅在it块中可用,以避免污染全局命名空间。您是否尝试在不同的Ruby实现上运行代码?你会得到同样的错误。

答案 1 :(得分:0)

我有同样的问题,但你的帖子激励我做一些研究。我在这里找到了解决方案: https://github.com/cucumber/cucumber/wiki/RSpec-Expectations 简而言之,在我的“features \ support \ env.rb”中,我添加了这个:

require 'rspec/expectations'
World(RSpec::Matchers)