1package systemtenant
2
3import (
4 "context"
5 "testing"
6
7 "github.com/stretchr/testify/require"
8)
9
10func TestSystemTenantRoundTrip(t *testing.T) {
11 if Is(context.Background()) {
12 t.Fatal()
13 }
14 require.True(t, Is(WithUnsafeContext(context.Background())))
15}