[TESTS] MockVariable temporarily replaces a global value
defer test.MockVariable(&variable, 1234)()
(cherry picked from commit 9c78752444
)
This commit is contained in:
parent
a12386d418
commit
d7795d7b25
1 changed files with 8 additions and 0 deletions
|
@ -33,3 +33,11 @@ func RedirectURL(resp http.ResponseWriter) string {
|
||||||
func IsNormalPageCompleted(s string) bool {
|
func IsNormalPageCompleted(s string) bool {
|
||||||
return strings.Contains(s, `<footer class="page-footer"`) && strings.Contains(s, `</html>`)
|
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…
Add table
Reference in a new issue