Move server tests to the server command

This commit is contained in:
Marc Di Luzio 2020-06-06 10:57:37 +01:00
parent 3bfbe38837
commit bc366583a4

View file

@ -1,4 +1,4 @@
package server
package main
import (
"os"
@ -6,13 +6,14 @@ import (
"github.com/google/uuid"
"github.com/mdiluz/rove/pkg/rove"
"github.com/mdiluz/rove/pkg/server"
"github.com/stretchr/testify/assert"
)
var serv rove.Server = "localhost:8080"
func TestMain(m *testing.M) {
s := NewServer(OptionPort(8080))
s := server.NewServer(server.OptionPort(8080))
s.Initialise()
go s.Run()