Portability

This commit is contained in:
andreimarcu 2015-09-28 12:35:11 -04:00
parent 8c50d4322f
commit 4599e055e5
1 changed files with 2 additions and 3 deletions

View File

@ -4,17 +4,16 @@ import (
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
"os" "os"
"path"
"strings" "strings"
"testing" "testing"
"github.com/zenazn/goji" "github.com/zenazn/goji"
) )
var a = 0
func TestSetup(t *testing.T) { func TestSetup(t *testing.T) {
Config.siteURL = "http://linx.example.org/" Config.siteURL = "http://linx.example.org/"
Config.filesDir = "/tmp/" + randomString(10) Config.filesDir = path.Join(os.TempDir(), randomString(10))
Config.metaDir = Config.filesDir + "_meta" Config.metaDir = Config.filesDir + "_meta"
Config.noLogs = true Config.noLogs = true
Config.siteName = "linx" Config.siteName = "linx"