blob: 0b334d36ccb9192ac79644508cb6ec6d69ef9dbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package utils
import (
"testing"
)
func TestConfig(t *testing.T) {
LoadConfig("config.json")
}
|