mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-12 09:05:39 +00:00
16 lines
282 B
Go
16 lines
282 B
Go
package httpservers
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetWebuiDir(t *testing.T) {
|
|
os.Chdir("../../") // go test sets the cwd to "httpservers" by default
|
|
|
|
dir := findWebuiDir()
|
|
|
|
assert.Equal(t, "./webui", dir, "Finding the webui dir")
|
|
}
|