Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: frankban/quicktest
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.14.4
Choose a base ref
...
head repository: frankban/quicktest
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.14.5
Choose a head ref
  • 12 commits
  • 5 files changed
  • 4 contributors

Commits on Nov 22, 2022

  1. Allow Matches and ErrorMatches matches to use an already-compiled reg…

    …exp.Regexp
    
    This allows users to have full control over the pattern used for
    matching, and all of its flags (multiline)
    pajlada committed Nov 22, 2022
    Configuration menu
    Copy the full SHA
    9b528f4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    677534e View commit details
    Browse the repository at this point in the history
  3. Add ErrorMatches/PanicMatches tests for pre-compiled regexp

     - qt.ErrorMatches single-line match `expectedNegateFailure`
     - qt.ErrorMatches multi-line match `expectedNegateFailure`
     - qt.ErrorMatches multi-line match `expectedCheckFailure`
     - qt.PanicMatches single-line match `expectedNegateFailure`
     - qt.PanicMatches multi-line match `expectedNegateFailure`
     - qt.PanicMatches multi-line match `expectedCheckFailure`
    pajlada committed Nov 22, 2022
    Configuration menu
    Copy the full SHA
    e144d26 View commit details
    Browse the repository at this point in the history
  4. Add pre-compiled regexp example for Matches, ErrorMatches, and PanicM…

    …atches
    
    Documentation added both to the checker.go file and the README.md file
    pajlada committed Nov 22, 2022
    Configuration menu
    Copy the full SHA
    08f7639 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. Bump actions/setup-go from 3 to 4

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Mar 15, 2023
    Configuration menu
    Copy the full SHA
    e0e9431 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2023

  1. Turn a panicking cmp.Diff into a bad check

    Using Not(DeepEquals) on a type with an unexported field currently
    succeeds without an error. This is because the unexported field is
    raised as a panic by go-cmp, which is turned into a plain error by
    the library. Not then interprets the error to mean "not equal" instead
    of forwarding it to the user.
    
    Fix this by turning any go-cmp panics into a bad check.
    
    Fixes #153
    lmb committed Apr 3, 2023
    Configuration menu
    Copy the full SHA
    636ce19 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2023

  1. Merge pull request #137 from pajlada/feat/checker-accept-regexp

    Allow Matches and ErrorMatches matches to use an already-compiled regexp.Regexp
    frankban authored Apr 11, 2023
    Configuration menu
    Copy the full SHA
    1af932f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #152 from frankban/dependabot/github_actions/actio…

    …ns/setup-go-4
    
    Bump actions/setup-go from 3 to 4
    frankban authored Apr 11, 2023
    Configuration menu
    Copy the full SHA
    6a0f8ad View commit details
    Browse the repository at this point in the history
  3. Merge pull request #154 from lmb/cmp-equal-bad-checkf

    Turn a panicking cmp.Diff into a bad check
    frankban authored Apr 11, 2023
    Configuration menu
    Copy the full SHA
    9a0c242 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a225823 View commit details
    Browse the repository at this point in the history
  5. CI: include go 1.20

    frankban committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    68d1d64 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #155 from frankban/satisfies-refernce

    Only keep the refernce to the original satisfies code
    frankban authored Apr 11, 2023
    Configuration menu
    Copy the full SHA
    abb14de View commit details
    Browse the repository at this point in the history
Loading