Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests/shared #101

Closed
wants to merge 6 commits into from
Closed

Tests/shared #101

wants to merge 6 commits into from

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    8e08df7 View commit details
    Browse the repository at this point in the history
  2. add sorting test cases

    erikyo committed May 13, 2024
    Configuration menu
    Copy the full SHA
    be6f62f View commit details
    Browse the repository at this point in the history

Commits on May 26, 2024

  1. Configuration menu
    Copy the full SHA
    414efed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eb1867c View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. fix: foldLine escape character logic

    The escape character logic was not working correctly.
    
    The logic of how a line is folded with a final escape character was
    flawed. Using a loop to consume forward slashes would not allow for an
    escaped forward slash to be folded correctly, it would append an extra
    character to the line.
    
    - Use if statements to check for escape characters. Only one extra
      character should be appended to the line, and it should be considered
      escaped.
    - Add new test cases to test the escape character logic.
    johnhooks committed May 27, 2024
    Configuration menu
    Copy the full SHA
    4633324 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2 from johnhooks/fix/tests-shared

    fix: foldLine escape character logic
    erikyo authored May 27, 2024
    Configuration menu
    Copy the full SHA
    dd91ced View commit details
    Browse the repository at this point in the history