mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
1be6b3640f
* equalz Scalatest matcher in new daml-lf/scalatest-tools library * equalz typing tests * a 'should' replacing design * a 'MatcherFactory1' design - this fails because the TC parameter should be a type member to avoid scala/bug#5075 but it is not * MatcherFactory1 with chained Lub+Equal typeclass - requires partial-unification at point of use, which is not great * LubEqual's extra tparam is probably unneeded * better LtEqual * demonstrate that HK LubEqual's resolve with DMT should + MatcherFactory * remove unneeded 3rd param from LubEqual, again * update dependency specs and license headers * allow use with should, shouldNot in some cases, preserving the shouldx/shouldNotx alternatives * move Equalz to libs-scala/scalatest-utils * rename bzl targets and place in com.daml.scalatest package * add scalatest-utils to release * move *SpecCheckLaws, Unnatural to scalatest-utils * missed scalacheck dep in scalatest-utils * downstreams of *SpecCheckLaws now get them from scalatest-utils * test equal-types case as well * update LF documentation CHANGELOG_BEGIN CHANGELOG_END * whitespace error
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
load(
|
|
"//bazel_tools:scala.bzl",
|
|
"da_scala_library",
|
|
"da_scala_test",
|
|
"lf_scalacopts",
|
|
)
|
|
|
|
da_scala_library(
|
|
name = "data",
|
|
srcs = glob(["src/main/**/*.scala"]),
|
|
plugins = [
|
|
"@maven//:org_spire_math_kind_projector_2_12",
|
|
],
|
|
scalacopts = lf_scalacopts,
|
|
tags = ["maven_coordinates=com.daml:daml-lf-data:__VERSION__"],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
deps = [
|
|
"@maven//:com_google_guava_guava",
|
|
"@maven//:com_google_protobuf_protobuf_java",
|
|
"@maven//:org_scalaz_scalaz_core_2_12",
|
|
],
|
|
)
|
|
|
|
da_scala_test(
|
|
name = "data-test",
|
|
size = "small",
|
|
srcs = glob(["src/test/**/*.scala"]),
|
|
scalacopts = lf_scalacopts,
|
|
deps = [
|
|
":data",
|
|
"//daml-lf/data-scalacheck",
|
|
"//libs-scala/scalatest-utils",
|
|
"@maven//:org_scalacheck_scalacheck_2_12",
|
|
"@maven//:org_scalaz_scalaz_core_2_12",
|
|
"@maven//:org_scalaz_scalaz_scalacheck_binding_2_12",
|
|
],
|
|
)
|