daml/triggers/tests/scenarios/BUILD.bazel
Moritz Kiefer 3171bb588a
Migrate trigger assertion library to DAML Script (#7318)
This is clearly a breaking change but triggers are still alpha so we
can get away this (confirmed with Bernhard).

changelog_begin

- [DAML Trigger] Daml.Trigger.Assert now uses DAML Script instead of scenarios.

changelog_end
2020-09-04 13:48:50 +02:00

23 lines
705 B
Python

# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
load("@build_environment//:configuration.bzl", "sdk_version")
sh_test(
name = "test-rule",
srcs = ["test-scenarios.sh"],
args = [
sdk_version,
"$(rootpath //compiler/damlc)",
"$(rootpath //triggers/daml:daml-trigger.dar)",
"$(rootpath //daml-script/daml:daml-script.dar)",
"$(rootpath Rule.daml)",
],
data = [
"Rule.daml",
"//compiler/damlc",
"//daml-script/daml:daml-script.dar",
"//triggers/daml:daml-trigger.dar",
],
deps = ["@bazel_tools//tools/bash/runfiles"],
)