basic login
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
-
-
-
-
-
-
resolved all discussions
Toggle commit list -
-
-
merged
Toggle commit list
Step 1. Fetch and check out the branch for this merge request
git fetch origin git checkout -b basic-login origin/basic-login
Step 2. Review the changes locally
Step 3. Merge the branch and fix any conflicts that come up
git checkout master git merge --no-ff basic-login
Step 4. Push the result of the merge to GitLab
git push origin master
Note that pushing to GitLab requires write access to this repository.
Tip: You can also checkout merge requests locally by following these guidelines.
added 1 commit
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | .navbar li a{ | |
| 50 | .navbar ul{ | |
Please
register
or
sign in
to reply
|
||
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | .navbar li a{ | |
| 50 | .navbar ul{ | |
| 51 | list-style: none; | |
| 52 | } | |
| 53 | li a{ | |
|
||
| 1 | class SessionsController < ApplicationController | |
| 2 | include SessionsHelper | |
| 3 | def new | |
|
||
| 1 | require "test_helper" | |
| 2 | ||
| 3 | class UsersLoginTest < ActionDispatch::IntegrationTest | |
| 4 | def setup | |
| 5 | @user = users(:michael) | |
| 6 | end | |
| 7 | ||
| 8 | test "login with valid email/invalid password" do | |
| 9 | get login_path | |
|
||
resolved all discussions
resolved all discussions
added 1 commit
mentioned in commit d7709f9a
mentioned in commit d7709f9a
merged