1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 02:04:14 +00:00

Refactoring: keep config package beego independent

This commit is contained in:
Vitaly Velikodny 2015-12-30 11:22:09 +03:00
parent 48fd9675ad
commit 4b368d9f5e
4 changed files with 4 additions and 10 deletions

View File

@ -17,8 +17,6 @@ package config
import (
"os"
"testing"
"github.com/astaxie/beego"
)
var inicontext = `
@ -69,7 +67,7 @@ func TestIni(t *testing.T) {
t.Error(pi)
t.Fatal(err)
}
if iniconf.String("runmode") != beego.DEV {
if iniconf.String("runmode") != "dev" {
t.Fatal("runmode not equal to dev")
}
if v, err := iniconf.Bool("autorender"); err != nil || v != false {

View File

@ -17,8 +17,6 @@ package config
import (
"os"
"testing"
"github.com/astaxie/beego"
)
var jsoncontext = `{
@ -122,7 +120,7 @@ func TestJson(t *testing.T) {
t.Error(pi)
t.Fatal(err)
}
if jsonconf.String("runmode") != beego.DEV {
if jsonconf.String("runmode") != "dev" {
t.Fatal("runmode not equal to dev")
}
if v := jsonconf.Strings("unknown"); len(v) > 0 {

View File

@ -18,7 +18,6 @@ import (
"os"
"testing"
"github.com/astaxie/beego"
"github.com/astaxie/beego/config"
)
@ -66,7 +65,7 @@ func TestXML(t *testing.T) {
t.Error(pi)
t.Fatal(err)
}
if xmlconf.String("runmode") != beego.DEV {
if xmlconf.String("runmode") != "dev" {
t.Fatal("runmode not equal to dev")
}
if v, err := xmlconf.Bool("autorender"); err != nil || v != false {

View File

@ -18,7 +18,6 @@ import (
"os"
"testing"
"github.com/astaxie/beego"
"github.com/astaxie/beego/config"
)
@ -63,7 +62,7 @@ func TestYaml(t *testing.T) {
t.Error(pi)
t.Fatal(err)
}
if yamlconf.String("runmode") != beego.DEV {
if yamlconf.String("runmode") != "dev" {
t.Fatal("runmode not equal to dev")
}
if v, err := yamlconf.Bool("autorender"); err != nil || v != false {