3

我正在尝试在表单(使用简单表单构建)上运行请求规范。该表单包括一些使用关联方法生成的选择框,因此包括模型的数据库值。

运行 save_and_open_page 时,它​​看起来不像选择下拉菜单中的值。

我看过模拟和存根,但这对我来说是新的,我对基本用法之外的概念仍然有些困惑。

有什么方法可以为选择框生成集合,以便 Capybara 可以拾取它?

我正在使用 Rails 3.1、Simple Form、Capybara 和 FactoryGirl。

我的代码是...

挑战规格

describe "New Challenges" do

  before(:all) do
    %w["Under 13", "13 - 16"].each do |item|
      FactoryGirl.create(:age, :name => item)
     end
  end

  it "should redirect to resources after submission" do

    login_valid_user

    visit new_challenge_path

    @challenge = Factory.build(:challenge)

    fill_in "challenge_name", :with => @challenge.name
    fill_in "challenge_description", :with => @challenge.description
    fill_in "challenge_description", :with => @challenge.description
    select "30 mins", :from => "challenge_timescale"
    save_and_open_page
    select 1, :from => "challenge_age_id"
    select @challenge.category, :from => "challenge_category_id"

    click_button "save_button"

  end
end

控制器

def new
  @challenge = Challenge.new

  respond_to do |format|
    format.html # new.html.haml
    format.json { render json: @challenge }
  end
end

表单项

<%= f.association :age, :prompt => "Please select..." %>

楷模

挑战

class Challenge < ActiveRecord::Base
  belongs_to :age
end

年龄

class Age < ActiveRecord::Base
  has_many :challenges
end
4

1 回答 1

0

我强烈建议为您的测试创建固定装置。

通过这种方式,您可以手动创建和操作测试所需的记录。它不像使用模拟、存根和双打那样高效或优雅,但它加强了对应用程序和测试的理解。

于 2013-01-08T20:30:46.030 回答