Try this:
http://github.com/joshknowles/rspec-on-rails-matchers/tree/master

MaurĂ­cio Linhares wrote:
This plugin does it -> http://code.google.com/p/rspec-on-rails-matchers/

But it's throwing a "forbidden" error right now.

On Tue, May 20, 2008 at 8:59 PM, T K <[EMAIL PROTECTED]> wrote:
Hi,

I have a spec

 it "should have a unique username "

I have a code:

 validates_uniqueness_of :user_name


Now, I don't know how to test this code. In order to test this, do I
need to run `save`?

For example,

@user = User.create(:username => "mike")
@another = User.create(:username => "mike")
@another.save.should be_false

This messes up test database. Is there any better way?

-T
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users





_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to