7 Commits

4 changed files with 17 additions and 0 deletions
Split View
  1. +6
    -0
      CHANGELOG.md
  2. +1
    -0
      config.txt
  3. +6
    -0
      src/login_module.c
  4. +4
    -0
      tests/login_test_cases.md

+ 6
- 0
CHANGELOG.md View File

@@ -0,0 +1,6 @@
# Changelog

## v1.0.0

- Integrated login feature after resolving the configuration conflict.
- Added login test cases after rebasing the test branch on the latest main branch.

+ 1
- 0
config.txt View File

@@ -0,0 +1 @@
mode=login-integrated

+ 6
- 0
src/login_module.c View File

@@ -0,0 +1,6 @@
/* Login feature source file for Git branch practice. */

int Login_CheckCredentials(const char *user, const char *password)
{
return (user != 0) && (password != 0);
}

+ 4
- 0
tests/login_test_cases.md View File

@@ -0,0 +1,4 @@
# Login Test Cases

- Verify valid credentials can enter the login flow.
- Verify null credentials are rejected.

Loading…
Cancel
Save