mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-30 09:41:11 -05:00
[TESTS] MockVariable temporarily replaces a global value
defer test.MockVariable(&variable, 1234)() (cherry picked from commit9c78752444
) (cherry picked from commit8ab559df0d
) (cherry picked from commit2e7fe1ec95
) (cherry picked from commitf9618b8896
) Conflicts: modules/test/utils.go https://codeberg.org/forgejo/forgejo/issues/1219
This commit is contained in:
parent
2e539d5190
commit
916ec9acab
1 changed files with 8 additions and 0 deletions
|
@ -22,3 +22,11 @@ func MockVariableValue[T any](p *T, v T) (reset func()) {
|
||||||
*p = v
|
*p = v
|
||||||
return func() { *p = old }
|
return func() { *p = old }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func MockVariable[T any](variable *T, mock T) func() {
|
||||||
|
original := *variable
|
||||||
|
*variable = mock
|
||||||
|
return func() {
|
||||||
|
*variable = original
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue