summaryrefslogtreecommitdiffstats
path: root/utils/config_test.go
blob: d42f99a69e15c2633c14f6df5caa9ae946c926c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package utils

import (
	"testing"
)

func TestConfig(t *testing.T) {
	TranslationsPreInit()
	LoadConfig("config.json")
	InitTranslations(Cfg.LocalizationSettings)
}