14 lines
241 B
Go
14 lines
241 B
Go
|
package report
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestCredentials(t *testing.T) {
|
||
|
r := Credentials("Name", "Value", "secretName", "secretValue")
|
||
|
assert.NotEmpty(t, r)
|
||
|
assert.Contains(t, r, "secretName")
|
||
|
}
|