summaryrefslogtreecommitdiffstats
path: root/store/sql_store_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/sql_store_test.go')
-rw-r--r--store/sql_store_test.go28
1 files changed, 0 insertions, 28 deletions
diff --git a/store/sql_store_test.go b/store/sql_store_test.go
index 721e708b5..d65d591ad 100644
--- a/store/sql_store_test.go
+++ b/store/sql_store_test.go
@@ -34,34 +34,6 @@ func TestSqlStore1(t *testing.T) {
utils.LoadConfig("config.json")
}
-func TestSqlStore2(t *testing.T) {
- defer func() {
- if r := recover(); r == nil {
- t.Fatal("should have been fatal")
- }
- }()
-
- utils.LoadConfig("config.json")
- utils.Cfg.SqlSettings.DriverName = "missing"
- store = NewSqlStore()
-
- utils.LoadConfig("config.json")
-}
-
-func TestSqlStore3(t *testing.T) {
- defer func() {
- if r := recover(); r == nil {
- t.Fatal("should have been fatal")
- }
- }()
-
- utils.LoadConfig("config.json")
- utils.Cfg.SqlSettings.DataSource = "missing"
- store = NewSqlStore()
-
- utils.LoadConfig("config.json")
-}
-
func TestEncrypt(t *testing.T) {
m := make(map[string]string)