summaryrefslogtreecommitdiff
path: root/soundbox_test.go
diff options
context:
space:
mode:
authorxegineering <me@xegineering.eu>2024-10-02 21:18:51 +0200
committerxegineering <me@xegineering.eu>2024-10-02 21:18:51 +0200
commit07741b358ba75350e7be36ee76f45afa18b0461b (patch)
treee9dccde0151f9afdc8703c09f665d043149ddce7 /soundbox_test.go
parentcdd23b4b0a7c14dba738f035e75ac640f1ca3e85 (diff)
downloadsoundbox-go-07741b358ba75350e7be36ee76f45afa18b0461b.tar
soundbox-go-07741b358ba75350e7be36ee76f45afa18b0461b.tar.zst
soundbox-go-07741b358ba75350e7be36ee76f45afa18b0461b.zip
Rename Soundbox to Client
Since the module name is `soundbox` naming the primary type of the module also `Soundbox` is redundant. Following similar code from the Go standard library this struct is renamed to `Client`.
Diffstat (limited to 'soundbox_test.go')
-rw-r--r--soundbox_test.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/soundbox_test.go b/soundbox_test.go
deleted file mode 100644
index ee9d885..0000000
--- a/soundbox_test.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package soundbox
-
-import (
- "testing"
-)
-
-func TestNewSoundbox(t *testing.T) {
- // valid MAC should succeed
- _, err := NewSoundbox("12:34:56:ab:cd:ef")
- if err != nil {
- t.Fatalf("NewSoundbox() failed: %v", err)
- }
-
- // invalid MAC should fail
- _, err = NewSoundbox("12:34:56:ab:cd")
- if err == nil {
- t.Fatalf("NewSoundbox() failed: %v", err)
- }
-
- // No EUI-64 supported
- _, err = NewSoundbox("12:34:56:ab:cd:ef:12:45")
- if err == nil {
- t.Fatalf("NewSoundbox() failed: %v", err)
- }
-}