mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
[TESTS] MockVariable temporarily replaces a global value
defer test.MockVariable(&variable, 1234)() (cherry picked from commit9c78752444
) (cherry picked from commitd7795d7b25
) (cherry picked from commitd0ffbd112c
) (cherry picked from commitf3e62a57bf
)
This commit is contained in:
parent
b9baed2c74
commit
e0ede14564
1 changed files with 8 additions and 0 deletions
|
@ -33,3 +33,11 @@ func RedirectURL(resp http.ResponseWriter) string {
|
|||
func IsNormalPageCompleted(s string) bool {
|
||||
return strings.Contains(s, `<footer class="page-footer"`) && strings.Contains(s, `</html>`)
|
||||
}
|
||||
|
||||
func MockVariable[T any](variable *T, mock T) func() {
|
||||
original := *variable
|
||||
*variable = mock
|
||||
return func() {
|
||||
*variable = original
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue