0

我想做类似以下的事情:

require 'rspec-expectations'
"bat".length.should eq(3)
# => NoMethodError: undefined method `eq' for main:Object

这样的事情可能吗?我需要如何更改它?我需要要求'rspec-expectations'吗?

4

2 回答 2

2

尝试interactive_rspec

gem install interactive_rspec

然后

irspec
001> "bat".length.should eq(3)
.

Finished in 0.00006 seconds
1 example, 0 failures
=> true
于 2013-04-28T16:10:31.327 回答
1

在 irb 中:

require 'rspec-expectations'
include RSpec::Matchers

"bat".length.should eq(3)
于 2013-04-28T16:13:27.550 回答