mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-07 08:57:12 +00:00
12 lines
203 B
Go
12 lines
203 B
Go
package api_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rcourtman/pulse-go-rewrite/internal/testutil"
|
|
)
|
|
|
|
func setMockModeForTest(t *testing.T, enabled bool) {
|
|
t.Helper()
|
|
testutil.SetMockMode(t, enabled)
|
|
}
|