.
  .
  .
  def test_password_reminder
    post :remind, :user => { :email => @user.email }
    assert_response :redirect
    assert_redirected_to :action => "index", :controller => "site"
    assert_equal "Informacje o logowaniu zostay wysane.", flash[:notice]
    assert_equal 1, @emails.length
  end
end

