mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 18:32:19 +00:00
13 lines
157 B
Go
13 lines
157 B
Go
package config
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestLoad(t *testing.T) {
|
|
_, err := Load()
|
|
if err != nil {
|
|
t.Error("Failed to load configuration:", err)
|
|
}
|
|
}
|