19 lines
317 B
Go
19 lines
317 B
Go
// Copyright 2024 The Forgejo Authors
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMockProtect(t *testing.T) {
|
|
mockable := "original"
|
|
restore := MockProtect(&mockable)
|
|
mockable = "tainted"
|
|
restore()
|
|
assert.Equal(t, "original", mockable)
|
|
}
|