1
0
mirror of https://github.com/ManyakRus/crud_generator.git synced 2024-12-18 23:47:38 +02:00
crud_generator/internal/folders/folders_test.go

14 lines
259 B
Go
Raw Normal View History

2023-10-06 15:48:58 +02:00
package folders
import (
"github.com/ManyakRus/crud_generator/internal/config"
2023-12-27 13:28:11 +02:00
ConfigMain "github.com/ManyakRus/starter/config_main"
2023-10-06 15:48:58 +02:00
"testing"
)
func TestCreateAllFolders(t *testing.T) {
ConfigMain.LoadEnv()
config.FillSettings()
CreateAllFolders()
}