mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
19 lines
439 B
Go
19 lines
439 B
Go
|
package resources
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestNewVerificationDaemonset(t *testing.T) {
|
||
|
deployment := NewVerificationDaemonSet("csp")
|
||
|
deploymentYAML, err := deployment.Marshal()
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
var recreated verificationDaemonset
|
||
|
require.NoError(t, UnmarshalK8SResources(deploymentYAML, &recreated))
|
||
|
assert.Equal(t, deployment, &recreated)
|
||
|
}
|