initial commit
This commit is contained in:
13
customer/customer_attributes_test.go
Normal file
13
customer/customer_attributes_test.go
Normal file
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user