0

我有一个属于用户模型的教程模型。我希望教程标题在每个用户级别上都是唯一的。因此,两个用户可以拥有具有相同标题的教程,但一个用户不能拥有两个具有相同标题的教程。我的测试失败了,但我知道我正在纠正过滤掉重复的标题。我的测试有什么问题?

# model - tutorial.rb
class Tutorial < ActiveRecord::Base
  attr_accessible :title
  belongs_to :user

  validates :user_id, presence: true
  validates :title, presence: true, length: { maximum: 140 }, uniqueness: { :scope => :user_id }
end

# spec for model
require 'spec_helper'
describe Tutorial do
  let(:user) { FactoryGirl.create(:user) }
  before do
    @tutorial = FactoryGirl.create(:tutorial, user: user)
  end

  subject { @tutorial }

  describe "when a title is repeated" do
    before do
      tutorial_with_same_title = @tutorial.dup
      tutorial_with_same_title.save
    end
    it { should_not be_valid }
  end
end

# rspec output
Failures:
  1) Tutorial when a title is repeated 
     Failure/Error: it { should_not be_valid }
       expected valid? to return false, got true
     # ./spec/models/tutorial_spec.rb:50:in `block (3 levels) in <top (required)>'
4

1 回答 1

1

测试的问题是这一行:

it { should_not be_valid }

该规范检查valid?您的测试主题,即@tutorial- 这是有效的。

建议重构:

describe Tutorial do
  let(:user) { FactoryGirl.create(:user) }
  before do
    @tutorial = FactoryGirl.create(:tutorial, user: user)
  end

  subject { @tutorial }

  describe "when a title is repeated" do
    subject { @tutorial.dup }
    it { should_not be_valid }
  end
end
于 2013-01-19T00:10:35.027 回答