13 lines
188 B
Ruby
13 lines
188 B
Ruby
require 'spec_helper'
|
|
|
|
describe PasswordResetsController do
|
|
|
|
describe "GET 'new'" do
|
|
it "returns http success" do
|
|
get 'new'
|
|
response.should be_success
|
|
end
|
|
end
|
|
|
|
end
|