Skip to content

Instantly share code, notes, and snippets.

@ropiku
Created February 11, 2009 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ropiku/62356 to your computer and use it in GitHub Desktop.
Save ropiku/62356 to your computer and use it in GitHub Desktop.
require File.dirname(__FILE__) + '/../test_helper'
class UserTest < Test::Unit::TestCase
include Clearance::Test::Unit::UserTest
should_allow_mass_assignment_of :username
context "When signing up" do
should_validate_presence_of :username
end
context "When multiple users have signed up" do
setup { @user = Factory(:user) }
should_validate_uniqueness_of :username
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment