blob: aab01dff47ee89632507ee79b2807ff0a768a786 [file] [log] [blame]
Sergiusz Bazanski30317b42019-08-01 16:50:41 +02001load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "go_default_test",
5 srcs = ["sql_test.go"],
6 deps = [
Serge Bazanski97b5cd72023-07-28 17:14:50 +00007 "//go/mirko/tests/sql/migrations",
8 "@com_github_golang_migrate_migrate_v4//database/sqlite3",
9 ],
10)
11
12go_test(
13 name = "sql_test",
14 srcs = ["sql_test.go"],
15 deps = [
16 "//go/mirko/tests/sql/migrations",
17 "@com_github_golang_migrate_migrate_v4//database/sqlite3",
Sergiusz Bazanski30317b42019-08-01 16:50:41 +020018 ],
19)