mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-02-21 23:23:46 +02:00
[TESTS] MockVariable temporarily replaces a global value
defer test.MockVariable(&variable, 1234)() (cherry picked from commit9c78752444) (cherry picked from commitd7795d7b25)
This commit is contained in:
committed by
Earl Warren
parent
d4952d0d04
commit
d0ffbd112c
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user