move user and customer files

This commit is contained in:
2024-08-17 21:40:04 -05:00
parent 7711fc14ed
commit 8673eb9869
11 changed files with 178 additions and 23 deletions

13
customer_test.go Normal file
View File

@@ -0,0 +1,13 @@
package main
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)
}