[TESTS] MockVariable temporarily replaces a global value
defer test.MockVariable(&variable, 1234)()
This commit is contained in:
parent
5ad65cdd19
commit
9c78752444
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…
Reference in a new issue