require File.dirname(__FILE__) + '/../test_helper' class UserTest < Test::Unit::TestCase def setup User.new(:username => 'elliot', :passwd => 'police73').save end def test_authenticate assert User.authenticate('elliot', 'police73') assert !(User.authenticate('elliot', 'bilbo')) assert !(User.authenticate('frank', 'police73')) end end