mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-13 09:35:37 +00:00
13 lines
203 B
Go
13 lines
203 B
Go
package httpservers
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetWebuiDir(t *testing.T) {
|
|
dir := findWebuiDir()
|
|
|
|
assert.Equal(t, "./webui", dir, "Finding the webui dir")
|
|
}
|