- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 Rspec 非常陌生,正在将代码库从 Rails 3.0.x 迁移到 Rails 3.1.x 并同时添加测试。我能够进行基本的 Controller 测试,但是在开始集成 Devise 之后,我开始遇到问题。具体来说,我有一个名为 User
的设计对象属于 Company
,以及 Company
有很多Communities
.我正在尝试为 Communities
编写测试 Controller ,并且当尝试通过关联引用(例如 controller.current_user.communities
)时,我无法引用我创建的 Factory 对象。当我尝试测试时,出现以下(或类似)错误:No route matches {:id=>nil, :controller=>"communities", :action=>"edit"}
我确定我遗漏了一些与 Rspec/Factory_Girl 相关的基本内容,但任何帮助将不胜感激。
用于测试 edit
的设置示例为 Communities
采取行动如下:
/config/routes.rb
Units::Application.routes.draw do
devise_for :users
resources :companies
resources :communities
...
root :to => 'companies#index'
end
class User < ActiveRecord::Base
belongs_to :company
has_many :communities, :through => :company
...
end
class Company < ActiveRecord::Base
has_many :users
has_many :communities
...
end
class Community < ActiveRecord::Base
belongs_to :company
...
end
require 'spec_helper'
describe CommunitiesController do
render_views
login_user
...
context "GET #edit" do
before(:each) do
@company = controller.current_user.company
@community = controller.current_user.communities.new[Factory.build(:community, :company => @company)]
controller.current_user.company.communities.should_receive(:find).with(:company => @company)
end
it "should be successful" do
get :edit, :id => @community
response.should be_successful
end
it "should find a specific community" do
get :edit, :id => @community
assigns(:community).should eq(@community)
end
end
...
end
class CommunitiesController < ApplicationController
...
def edit
@community = current_user.communities.find(params[:id])
end
...
end
module ControllerMacros
def login_user
before(:each) do
@request.env["devise.mapping"] = Devise.mappings[:user]
company = Factory.create(:company)
user = Factory.create(:user, :company => company)
# user.confirm! # or set a confirmed_at inside the factory. Only necessary if you are using the confirmable module
sign_in user
end
end
end
最佳答案
错误:“没有路由匹配 {:id=>nil, :controller=>"communities", :action=>"edit"}” 是你 before(:each) 块中的行的结果,内容如下:
@community = controller.current_user.communities.new[Factory.build(:community, :company => @company)]
@community = Factory.create(:community, :company => @company)
get :edit, :id => @community
get :edit, :id => @community.id
controller.current_user.company.communities.should_receive(:find).with(:company => @company)
controller.current_user.company.communities.should_receive(:find).with(:company => @company)
it "should find communities" do
controller.current_user.company.communities.should_receive(:find).with(:company => @company)
end
关于ruby-on-rails-3.1 - Rspec + Devise + Factory Girl 测试与协会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9381369/
您好,我有一个用 cakephp 开发的网站。我有两张 table :成分属性 表之间的关系是 HasAndBelongsToMany(HABTM)。这是我的模型: class Ingredient
我从 sails.js 开始,我完全迷失了我的 sql 查询。 我有以下表格: genres +-----------+--------------+------+-----+ | Field
我正在开发一个 Rails 应用程序,用户可以在其中将他们希望执行的任务添加到他们自己的自定义列表中。每个任务也可以属于 0 个或多个类别。到目前为止,我已经试过了: 用户.rb has_one :u
我是新手。我正在尝试加入不同的集合以获取一些数据。我能够获取帖子创建者和喜欢的信息,但是如何使用 mongoose 中的关联获取包含他们的评论和评论者信息的帖子? 用户模式 const userSc
我试图让 mongoid 保存关联,但我只能让一侧工作。如果我有以下测试。 test "should add a user as a follower when a user follows th
我正在为 has_many 使用 FactoryGirl 示例来自 http://robots.thoughtbot.com/post/254496652/aint-no-calla-back-gir
我想为我的应用程序实现一个消息传递系统。 我有用户。 我应该怎么做? 创建一个带有外部两个用户外键的消息模型??.. 完成这项工作的最合适的方法是什么? 我担心的是,如果我查询“message.use
我正在尝试使用 FactoryGirl 创建一个测试数据库,该数据库的关联是 Parent has_many Entries。此时抛出Parent不能为空的ActiveRecord验证错误。我在这方面
我有以下关联 class Training 我也试过 FactoryGirl.define do factory :attendance do training associat
以下是我的制造商: Fabricator(:my_fabricator) do my_first_association my_second_association end 这里的问题是我需要
有关 Rails 关联的问题。 考虑以下模型: 人 事件 图片 人物和事件可以有很多图像。 上传到事件的图像需要具有与多人关联的能力。 这意味着人和图像之间存在两种关系。 一种将图像直接上传到人物身上
谁能告诉我 Android 应用程序开发与 Java 的关联有多密切。也就是说,从事 Android 开发的人员有可能从事 Core Java 或 J2EE 或 J2SE 的工作吗? 让我把我的问题说
从 Rails 4 和 Postgres 9 开始,引入了 array column。我还尝试使用数组列来存储诸如 tags 或 categories 之类的东西,我不经常更改它们,它用作搜索的引用/
我正在尝试从一对多关系创建一个序列化的 RESTful 响应。 我有一张表Lexicon,主键lexicon_id,我还有一张表lexicon_attributes,主键lexicon_attribu
协会的确切目的是什么?我了解关系的含义以及何时使用每种类型,例如: belongs_to, has_many, has_one , has_and_belongs_to_many, ect 但我不太明
最近我开始使用 Ruby on Rails 而不是 PHP 创建我的网站。 我已经很容易地掌握了这门语言,但仍然对联想没有 100% 的信心:) 我有这种情况: 用户模型 has_and_belong
我想用Sinatra和DataMapper做一个博客应用,我的主应用文件是这样的。 %w[rubygems sinatra data_mapper].each{ |r| require r } Dat
我有一个以前用于生产的 MySQL 数据库,现在我们的团队正在迁移到 SailsJS。我读过有关 sails 船协会的资料,我认为它很棒。但我想知道您是否可以使用关联来使用 .populate 方法填
我有一个模型 ShippingOption,它有_many ShippingSpeedOptions 还有一个要求: ShippingOption 必须有至少一个 ShippingSpeedOptio
好的,这是我的问题。我有 3 种不同的模型,人员、角色、客户和商店。客户有很多商店,也可以有很多人。商店有很多人。人有不同的角色。 1 人可以在多家门店工作,在每家门店可能担任不同的角色。 例如。 J
我是一名优秀的程序员,十分优秀!