mirror of
https://github.com/minio/minio.git
synced 2024-12-26 23:25:54 -05:00
23 lines
243 B
Go
23 lines
243 B
Go
package featureflags
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestFeatureFlag(t *testing.T) {
|
|
foo := Get("foo")
|
|
if foo {
|
|
t.Fail()
|
|
}
|
|
Enable("foo")
|
|
foo = Get("foo")
|
|
if !foo {
|
|
t.Fail()
|
|
}
|
|
Disable("foo")
|
|
foo = Get("foo")
|
|
if foo {
|
|
t.Fail()
|
|
}
|
|
}
|