From 96c482205e224d4acc5048357900e05e4f1644b6 Mon Sep 17 00:00:00 2001 From: Dotan Nahum Date: Thu, 7 Jul 2022 09:34:26 +0300 Subject: [PATCH] add license headers Signed-off-by: Dotan Nahum --- tests/infra-fixtures/test-loader.rego | 14 ++++++++++++++ tests/infra-fixtures/test-uuid.rego | 14 ++++++++++++++ tests/smoke_test.rs | 14 ++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/tests/infra-fixtures/test-loader.rego b/tests/infra-fixtures/test-loader.rego index c343cb8..b35dbac 100644 --- a/tests/infra-fixtures/test-loader.rego +++ b/tests/infra-fixtures/test-loader.rego @@ -1,3 +1,17 @@ +# Copyright 2022 The Matrix.org Foundation C.I.C. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + package test default allow := false diff --git a/tests/infra-fixtures/test-uuid.rego b/tests/infra-fixtures/test-uuid.rego index df3cb01..f13bfd0 100644 --- a/tests/infra-fixtures/test-uuid.rego +++ b/tests/infra-fixtures/test-uuid.rego @@ -1,3 +1,17 @@ +# Copyright 2022 The Matrix.org Foundation C.I.C. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + package test policy[data] { diff --git a/tests/smoke_test.rs b/tests/smoke_test.rs index aa1d2eb..8be4b79 100644 --- a/tests/smoke_test.rs +++ b/tests/smoke_test.rs @@ -1,3 +1,17 @@ +// Copyright 2022 The Matrix.org Foundation C.I.C. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + use std::path::Path; use anyhow::Result as AnyResult;