Read more

Use Shoulda's validate_uniqueness_of matcher correctly

Henning Koch
September 08, 2010Software engineer at makandra GmbH

Works without requiring an initial record in modern versions.

This raises "Could not find first Keyword":

describe Keyword do
  it { should validate_uniqueness_of(:text) }
end
Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

Do this instead:

describe Keyword do

  it 'should have a unique #text' do
    Keyword.make
    should validate_uniqueness_of(:text)
  end

end

This is the intended behavior.

Posted by Henning Koch to makandra dev (2010-09-08 16:44)