0

为什么这个测试在必须通过时返回“TypeError:nil 不是符号”?它来自一本书。

describe "The string" do 
 it "should have 11 simbols" do
  "this string".should have(11)
 end
end
4

1 回答 1

3

这是书中的一个错误。该行应该是:

"this string".should have(11).symbols
于 2012-05-18T22:41:43.520 回答