mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 19:57:41 +00:00
15 lines
274 B
Ruby
15 lines
274 B
Ruby
require 'test_helper'
|
|
|
|
class SessionsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get login," do
|
|
get sessions_login,_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get home" do
|
|
get sessions_home_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|