在Rails 5和RSpec 3.5中,我得到了以下错误。
1) User
Failure/Error: it { should validate_uniqueness_of(:auth_token)}
NoMethodError:
undefined method `validate_uniqueness_of' for #<RSpec::ExampleGroups::User:0x007fab919f8cf
8>
# ./spec/models/user_spec.rb:14:in `block (2 levels) in <top (required)>'
我已经在谷歌上搜索了正确的语法,但找不到解决方案。有谁知道这里用什么吗?谢谢
3条答案
按热度按时间vs3odd8k1#
你必须将gem添加到Gemfile中:
Gemfile
并包括它:
spec/rails_helper.rb
bq3bfh9z2#
我通过添加以下内容使其工作:
Gemfile
*rails_helper.rb
.rspec
kdfy810k3#
将下面的行添加到spec_helper. rb。它将修复上述错误。config. infere_spec_type_from_file_location!