mirror of https://github.com/gabehf/trivia-api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
594 B
35 lines
594 B
package server_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gabehf/trivia-api/server"
|
|
"github.com/gabehf/trivia-api/trivia"
|
|
)
|
|
|
|
var S *server.Server
|
|
|
|
func TestMain(m *testing.M) {
|
|
S = new(server.Server)
|
|
S.Init()
|
|
S.Q.Init()
|
|
S.Q.Categories = []string{"world history"}
|
|
S.Q.M = map[string][]trivia.Question{
|
|
"world history": {
|
|
{
|
|
Question: "The ancient city of Rome was built on how many hills?",
|
|
Format: "MultipleChoice",
|
|
Category: "World History",
|
|
Choices: []string{
|
|
"Eight",
|
|
"Four",
|
|
"Nine",
|
|
"Seven",
|
|
},
|
|
Answer: "Seven",
|
|
},
|
|
},
|
|
}
|
|
m.Run()
|
|
}
|