mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 21:27:19 +00:00
30 lines
636 B
Go
30 lines
636 B
Go
package featureconfig
|
|
|
|
import (
|
|
"flag"
|
|
"testing"
|
|
|
|
"gopkg.in/urfave/cli.v2"
|
|
)
|
|
|
|
func TestInitFeatureConfig(t *testing.T) {
|
|
cfg := &Flags{
|
|
MinimalConfig: true,
|
|
}
|
|
Init(cfg)
|
|
if c := Get(); !c.MinimalConfig {
|
|
t.Errorf("MinimalConfig in FeatureFlags incorrect. Wanted true, got false")
|
|
}
|
|
}
|
|
|
|
func TestConfigureBeaconConfig(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
set.Bool(minimalConfigFlag.Name, true, "test")
|
|
context := cli.NewContext(&app, set, nil)
|
|
ConfigureBeaconChain(context)
|
|
if c := Get(); !c.MinimalConfig {
|
|
t.Errorf("MinimalConfig in FeatureFlags incorrect. Wanted true, got false")
|
|
}
|
|
}
|