10 lines
197 B
Go
10 lines
197 B
Go
|
package dbdrivers
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestFlow(t *testing.T) {
|
||
|
// driver := NewPostgresDriver("test", "pass", "dbname", "localhost", 3456)
|
||
|
// defer driver.Close()
|
||
|
// driver.GetTableInfo()
|
||
|
}
|