0

我一直在用头撞墙,试图弄清楚为什么这个测试没有通过 Rspec。它在浏览器中工作。

我有一个属于等级对象的课程表单。在 Course 表单中,有一个选择框允许用户选择 Grade:

<%= form_for [current_user, @course] do |course| %>
...
<%= course.label :grade_id, "What age are the students?" %>
<%= course.collection_select(:grade_id, Grade.all, :id, :grade_level, options ={:prompt => "Select Grade"})  %>

我在 Rspec 中的测试如下所示:

describe "A workign form" do
  before do
    sign_in_via_form #signs the user in
    visit new_user_course_path(@user) #references @user, defined in Helper
  end
let(:course){@user.courses}

  context "With valid information" do
    it "adds a course" do
      expect {
        fill_in 'course_name', with:'Course Name'
        select 'Fall', from: 'course_course_semester'
        select '2012', from: 'course_course_year'
        select 'Grade 5', from: 'course_grade_id'
        fill_in 'course_summary', with: 'Perfunctory Summary'
        fill_in 'course_objectives_attributes_0_objective', with: "an objective"
        click_button "submit"
     }.to change(course, :count).by(1)
    end
  end
...#other tests
end #describe block

在我的表单中生成的 HTML 如下所示:

<label for="course_grade_id">What age are the students?</label>
<select id="course_grade_id" name="course[grade_id]"><option value="">Select Grade</option>
    <option value="1">Kindergarten</option>
    <option value="2">Grade 1</option>
    <option value="3">Grade 2</option>
    <option value="4">Grade 3</option>
    <option value="5">Grade 4</option>
    <option value="6">Grade 5</option>
    <option value="7">Grade 6</option>
    <option value="8">Grade 7</option>
    <option value="9">Grade 8</option>
    <option value="10">Grade 9</option>
    <option value="11">Grade 10</option>
    <option value="12">Grade 11</option>
    <option value="13">Grade 12</option>
    <option value="14">High School</option>
</select>

让我知道是否需要其他代码;我很乐意提供它。我的其他选择框正在工作,但它们也是模型的一部分,其中数组驱动内容。但是,在这种情况下,相关模型正在驱动内容。我不确定这是否重要,如果重要的话。

4

1 回答 1

3

下拉列表的数据来自数据库。Rails 使用单独的数据库进行测试,默认情况下它的表是空的。因此,您需要填充成绩表以便在下拉列表中有一些选项。

使用 FactoryGirl 它看起来像

FactoryGirl.define do
  factory :grade do
    sequence(:grade_level) { |n| "Grade #{n}" }
  end
end

和测试

describe "A workign form" do
  before do
    sign_in_via_form #signs the user in
    FactoryGirl.create_list(:grade, 14) # fill the grades table before visit the page
    visit new_user_course_path(@user) #references @user, defined in Helper
  end
  ...
于 2012-12-14T16:48:24.297 回答