mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 03:40:27 +08:00
16 lines
223 B
Go
16 lines
223 B
Go
package configloaders
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/iwind/TeaGo/logs"
|
|
)
|
|
|
|
func TestLoadAdminModuleMapping(t *testing.T) {
|
|
m, err := loadAdminModuleMapping()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
logs.PrintAsJSON(m, t)
|
|
}
|