aboutsummaryrefslogtreecommitdiff
path: root/internal/conf/conf_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/conf/conf_test.go')
-rw-r--r--internal/conf/conf_test.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/internal/conf/conf_test.go b/internal/conf/conf_test.go
index c5159bed..1ac64d6c 100644
--- a/internal/conf/conf_test.go
+++ b/internal/conf/conf_test.go
@@ -15,27 +15,6 @@ import (
"gogs.io/gogs/internal/testutil"
)
-func TestAsset(t *testing.T) {
- // Make sure it does not blow up
- _, err := Asset("conf/app.ini")
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func TestAssetDir(t *testing.T) {
- // Make sure it does not blow up
- _, err := AssetDir("conf")
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func TestMustAsset(_ *testing.T) {
- // Make sure it does not blow up
- MustAsset("conf/app.ini")
-}
-
func TestInit(t *testing.T) {
ini.PrettyFormat = false
defer func() {