mirror of
https://github.com/ManyakRus/crud_generator.git
synced 2024-12-16 21:52:42 +02:00
23 lines
439 B
Go
23 lines
439 B
Go
package postgres
|
|
|
|
import (
|
|
ConfigMain "github.com/ManyakRus/starter/config_main"
|
|
"github.com/ManyakRus/starter/postgres_gorm"
|
|
"testing"
|
|
)
|
|
|
|
func TestFillMassTable(t *testing.T) {
|
|
ConfigMain.LoadEnv()
|
|
postgres_gorm.Connect()
|
|
defer postgres_gorm.CloseConnection()
|
|
|
|
Otvet, err := FillMapTable()
|
|
if err != nil {
|
|
t.Error("TestFillMassTable() error: ", err)
|
|
}
|
|
|
|
if len(Otvet) == 0 {
|
|
t.Error("TestFillMassTable() error: len =0")
|
|
}
|
|
}
|