forked from saurabh/orbit4-5
10 lines
185 B
Ruby
10 lines
185 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class PasswordControllerTest < ActionController::TestCase
|
||
|
test "should get forgot_password" do
|
||
|
get :forgot_password
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
end
|