summaryrefslogtreecommitdiff
path: root/soundbox_test.go
AgeCommit message (Collapse)Author
2024-10-02Rename Soundbox to Clientxegineering
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`.
2024-10-02Use testing.Fatalf() to log in testsxegineering
Using testing.Errorf() does not stop the test. This was never wanted.
2024-10-01Make soundbox package top-levelxegineering
It is not expected that this library will be so big that multiple packages make sense. Thus it should start only with the main package.