Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- require 'test_helper'
-
- class SessionsControllerTest < ActionDispatch::IntegrationTest
- test "should get new" do
- get sessions_new_url
- assert_response :success
- end
-
- test "should get create" do
- get sessions_create_url
- assert_response :success
- end
-
- test "should get destroy" do
- get sessions_destroy_url
- assert_response :success
- end
-
- end
|