github.com/Axway/agent-sdk@v1.1.101/pkg/config/migrationconfig_test.go (about)

     1  package config
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestMigrationConfig(t *testing.T) {
    10  	defConf := newMigrationConfig()
    11  
    12  	assert.False(t, defConf.ShouldCleanInstances())
    13  }