腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(8338)
视频
沙龙
1
回答
Rails
Rspec
模型
Spec
用户
:
email
ActiveRecord
::
RecordInvalid
、
、
想弄清楚为什么我的
rspec
测试失败了。最值得注意的是似乎自相矛盾的失败信息。声明我有一个
ActiveRecord
::RecordIn有效值错误,这正是我所断言的应该发生的情况。这是我的users_
spec
.rbit "is invalid without
email
" do end .
浏览 1
提问于2012-08-07
得票数 3
1
回答
如何使用
rails
配置database_cleaner
、
我在我的app/services folder.Now中有一些服务,我想测试这些服务,所以我使用
rspec
和factorygirl。我正在使用factoryGirl创建
用户
,但是当我运行
rspec
时,它显示以下错误 Validation failed:
Email
has already been
浏览 4
提问于2016-06-20
得票数 1
2
回答
嵌套上下文的
RSpec
电子邮件验证错误
、
、
、
、
# This file is copied to
spec
/ when you run '
rails
generate
rspec
:install' require '
rspec
/
rails
' require '
rspec
/au
浏览 0
提问于2012-03-04
得票数 0
回答已采纳
1
回答
验证失败:电子邮件已被接收
、
、
、
、
请注意,我的错误不是在创建
用户
时,而是在编辑时出现错误。,但editing_users_
spec
.rb还没有出现。$ bundle exec
rspec
spec
/features/admin/editing_users_
spec
.rb Validation failed: <e
浏览 1
提问于2015-08-02
得票数 0
回答已采纳
3
回答
将
rspec
配置为在运行错误测试时显示“E”错误
、
: Validation failed:
Email
has already been taken (
ActiveRecord
::
RecordInvalid
) 1) `save!': Val
浏览 1
提问于2013-11-30
得票数 1
回答已采纳
1
回答
如何获得一个简单的测试运行与
rspec
+制造?
、
、
、
我试图得到一个简单的测试和运行与
rspec
+制造。不幸的是,在这方面没有太多像样的文章。在
spec
/
model
/event_
spec
.rb中 subject { Fabricate(:event) }works if I uncomment this line: description "Be
浏览 3
提问于2012-03-19
得票数 2
回答已采纳
1
回答
FactoryGirl -验证失败:时区不包括在列表中
、
、
、
、
以下是错误:
ActiveRecord
::
RecordInvalid
:这是我的设计:class/
浏览 0
提问于2012-09-11
得票数 1
回答已采纳
2
回答
Rails
中的
Rspec
测试突然开始失败
、
、
、
、
sequence(:name) { |n| "Person #{n}" } sequence(:
email
/
spec
/models/course_
spec
.rb:36 # Course
浏览 0
提问于2013-10-13
得票数 0
回答已采纳
1
回答
在自动化测试中使用固定设备/工厂时,是否需要首先创建模型和资源?
、
spec
/
spec
_helper.rbENV["
RAILS
_ENV/config/environment", __FILE__)require
浏览 2
提问于2013-09-26
得票数 1
回答已采纳
1
回答
rspec
3,capybara和machinist 2的问题
、
、
} Validation failed: name has already been takenStore.blueprint doendENV["
RAILS
_ENV/config/environment&
浏览 0
提问于2014-09-07
得票数 0
4
回答
如何在错误的
rspec
规范之间清除数据库?
、
、
、
、
: Validation failed:
Email
has already been taken (
ActiveRecord
::
RecordInvalid
)避免此错误非常简单;运行
rails
_env/
spec
_helper: # This file is co
浏览 0
提问于2013-11-30
得票数 9
回答已采纳
1
回答
在两个模型之间关联后,第三个模型上的错误:
ActiveRecord
::RecordIn有效值:验证失败:
Email
已经被接受
、
、
、
、
我刚刚总结了
用户
之间的这种模型关联(使用设计来管理
用户
)、墙和帖子。在尝试
用户
和墙壁关联之前,以下错误不存在。(:post) { create(:post, created_at: Date.today) } Validationfailed:
Email
has already been takenrequire '<e
浏览 0
提问于2015-11-29
得票数 0
回答已采纳
2
回答
在Ruby/
Rails
中需要
、
、
我的
RSpec
代码是:require 'user_
model
' result = UserModel.add("test","test")endERROR : `./user_
model
.rb:1: uninitialize
浏览 3
提问于2013-02-11
得票数 0
回答已采纳
1
回答
rails
rspec
期望自定义验证失败
、
、
在使用自定义验证器运行我的
rspec
期望时,我得到了这个错误。失败,错误为 expected
ActiveRecord
::
RecordInvalid
with "Validation failed: This question is no
浏览 0
提问于2013-02-06
得票数 7
回答已采纳
1
回答
为什么
Rspec
坚持密码属性为空,而它不是空的?
、
、
、
我正在编写一个
用户
模型,而
RSpec
坚持要求我将字段留空,这些字段实际上是用完全有效的密码填充的。下面是我的
spec
/
model
/user_
spec
.rb文件: before(:each) do(@attr) Validation failed:
浏览 0
提问于2013-07-14
得票数 2
回答已采纳
3
回答
如何修复
rspec
“未定义方法`validate_presence_of'”错误
、
、
当我运行
rspec
时,会得到以下错误: Failure/Error: it { should validate_presence_of :
email
这是我的个人档案: gem 'byebug' gem "factory_g
浏览 4
提问于2016-02-01
得票数 5
回答已采纳
1
回答
工厂Bot 5 on
Rails
6在运行build_stubbed工厂时抛出验证错误
、
、
、
、
中,我的代码如下所示require '
email
_
spec
'require 'capybara/
rspec
'
ActiveRecord
::Migra
浏览 0
提问于2019-12-16
得票数 3
1
回答
Rails
4中的“工厂未注册”错误
、
、
、
、
以下是我对
spec
/ Factory /user.rb中一个简单的设计
用户
的工厂定义: factory :user dorequire '
rspec
/
rails
'requir
浏览 1
提问于2013-09-09
得票数 0
回答已采纳
1
回答
水豚Ruby On
Rails
登录
、
、
、
、
我一直试图让
用户
登录能够工作,但没有运气。请帮助我更好地理解水豚和
rspec
,我对此相当陌生。
ActiveRecord
::
RecordInvalid
:group :development, :test do gem '
rspec
-
rails
浏览 1
提问于2015-02-27
得票数 1
1
回答
未定义
RSpec
::Mocks::Mock:`i18n_scope的方法类
、
、
、
、
我最近升级到了
Rails
4。当我运行我的
RSpec
测试时,我得到了一个错误。以下是我的规范:2 transaction = double{ raise
ActiveRecord
::
RecordInvalid
.new(
model
) } 我在第3行得到了错误<NoMethodError: undefined method
浏览 2
提问于2015-08-18
得票数 1
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Ruby on Rails教材中文译文 第六章 建立用户模型
Ruby on Rails 学习手记(二)
应用程序分层:可扩展的Elixir应用程序设计模式
聊一聊 Spring Data JPA 中的那些日常实践
程序员为什么需要框架?
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券