Skip to content

Commit 9376d69

Browse files
Add analyze BDD (#381)
## Usage and product changes Adds test for the query structure and annotations returned by the analyze endpoint
1 parent cfbdcf0 commit 9376d69

File tree

3 files changed

+780
-0
lines changed

3 files changed

+780
-0
lines changed

query/analyze/BUILD

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4+
5+
package(default_visibility = ["//visibility:public"])
6+
7+
load("@typedb_dependencies//tool/checkstyle:rules.bzl", "checkstyle_test")
8+
9+
files = [
10+
"structure.feature",
11+
"annotations.feature",
12+
]
13+
14+
filegroup(
15+
name = "features",
16+
srcs = files,
17+
)
18+
19+
exports_files(files)
20+
21+
checkstyle_test(
22+
name = "checkstyle",
23+
include = glob(["*"]),
24+
license_type = "mpl-header",
25+
)

0 commit comments

Comments
 (0)