14 lines
273 B
Go
14 lines
273 B
Go
package customer
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"go-nkode/models"
|
|
"testing"
|
|
)
|
|
|
|
func TestNewCustomerAttributes(t *testing.T) {
|
|
keypad := models.KeypadSize{AttrsPerKey: 10, NumbOfKeys: 5}
|
|
_, nil := NewCustomerAttributes(keypad)
|
|
assert.NoError(t, nil)
|
|
}
|