From 59759fa79dfc37ace98273ad4486c0db95125fe7 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Mon, 12 Dec 2022 16:06:15 +0100 Subject: [PATCH] move tests to match folder structure --- test/{property => owrx}/__init__.py | 0 test/{property/filter => owrx/property}/__init__.py | 0 test/{property/validators => owrx/property/filter}/__init__.py | 0 test/{ => owrx}/property/filter/test_by_lambda.py | 0 test/{ => owrx}/property/filter/test_by_property_name.py | 0 test/{ => owrx}/property/test_property_carousel.py | 0 test/{ => owrx}/property/test_property_deletion.py | 0 test/{ => owrx}/property/test_property_filter.py | 0 test/{ => owrx}/property/test_property_layer.py | 0 test/{ => owrx}/property/test_property_readonly.py | 0 test/{ => owrx}/property/test_property_stack.py | 0 test/{ => owrx}/property/test_property_validator.py | 0 test/owrx/property/validators/__init__.py | 0 test/{ => owrx}/property/validators/test_bool_validator.py | 0 test/{ => owrx}/property/validators/test_float_validator.py | 0 test/{ => owrx}/property/validators/test_integer_validator.py | 0 test/{ => owrx}/property/validators/test_lambda_validator.py | 0 test/{ => owrx}/property/validators/test_number_validator.py | 0 test/{ => owrx}/property/validators/test_or_validator.py | 0 test/{ => owrx}/property/validators/test_regex_validator.py | 0 test/{ => owrx}/property/validators/test_string_validator.py | 0 test/{ => owrx}/property/validators/test_validator.py | 0 22 files changed, 0 insertions(+), 0 deletions(-) rename test/{property => owrx}/__init__.py (100%) rename test/{property/filter => owrx/property}/__init__.py (100%) rename test/{property/validators => owrx/property/filter}/__init__.py (100%) rename test/{ => owrx}/property/filter/test_by_lambda.py (100%) rename test/{ => owrx}/property/filter/test_by_property_name.py (100%) rename test/{ => owrx}/property/test_property_carousel.py (100%) rename test/{ => owrx}/property/test_property_deletion.py (100%) rename test/{ => owrx}/property/test_property_filter.py (100%) rename test/{ => owrx}/property/test_property_layer.py (100%) rename test/{ => owrx}/property/test_property_readonly.py (100%) rename test/{ => owrx}/property/test_property_stack.py (100%) rename test/{ => owrx}/property/test_property_validator.py (100%) create mode 100644 test/owrx/property/validators/__init__.py rename test/{ => owrx}/property/validators/test_bool_validator.py (100%) rename test/{ => owrx}/property/validators/test_float_validator.py (100%) rename test/{ => owrx}/property/validators/test_integer_validator.py (100%) rename test/{ => owrx}/property/validators/test_lambda_validator.py (100%) rename test/{ => owrx}/property/validators/test_number_validator.py (100%) rename test/{ => owrx}/property/validators/test_or_validator.py (100%) rename test/{ => owrx}/property/validators/test_regex_validator.py (100%) rename test/{ => owrx}/property/validators/test_string_validator.py (100%) rename test/{ => owrx}/property/validators/test_validator.py (100%) diff --git a/test/property/__init__.py b/test/owrx/__init__.py similarity index 100% rename from test/property/__init__.py rename to test/owrx/__init__.py diff --git a/test/property/filter/__init__.py b/test/owrx/property/__init__.py similarity index 100% rename from test/property/filter/__init__.py rename to test/owrx/property/__init__.py diff --git a/test/property/validators/__init__.py b/test/owrx/property/filter/__init__.py similarity index 100% rename from test/property/validators/__init__.py rename to test/owrx/property/filter/__init__.py diff --git a/test/property/filter/test_by_lambda.py b/test/owrx/property/filter/test_by_lambda.py similarity index 100% rename from test/property/filter/test_by_lambda.py rename to test/owrx/property/filter/test_by_lambda.py diff --git a/test/property/filter/test_by_property_name.py b/test/owrx/property/filter/test_by_property_name.py similarity index 100% rename from test/property/filter/test_by_property_name.py rename to test/owrx/property/filter/test_by_property_name.py diff --git a/test/property/test_property_carousel.py b/test/owrx/property/test_property_carousel.py similarity index 100% rename from test/property/test_property_carousel.py rename to test/owrx/property/test_property_carousel.py diff --git a/test/property/test_property_deletion.py b/test/owrx/property/test_property_deletion.py similarity index 100% rename from test/property/test_property_deletion.py rename to test/owrx/property/test_property_deletion.py diff --git a/test/property/test_property_filter.py b/test/owrx/property/test_property_filter.py similarity index 100% rename from test/property/test_property_filter.py rename to test/owrx/property/test_property_filter.py diff --git a/test/property/test_property_layer.py b/test/owrx/property/test_property_layer.py similarity index 100% rename from test/property/test_property_layer.py rename to test/owrx/property/test_property_layer.py diff --git a/test/property/test_property_readonly.py b/test/owrx/property/test_property_readonly.py similarity index 100% rename from test/property/test_property_readonly.py rename to test/owrx/property/test_property_readonly.py diff --git a/test/property/test_property_stack.py b/test/owrx/property/test_property_stack.py similarity index 100% rename from test/property/test_property_stack.py rename to test/owrx/property/test_property_stack.py diff --git a/test/property/test_property_validator.py b/test/owrx/property/test_property_validator.py similarity index 100% rename from test/property/test_property_validator.py rename to test/owrx/property/test_property_validator.py diff --git a/test/owrx/property/validators/__init__.py b/test/owrx/property/validators/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/test/property/validators/test_bool_validator.py b/test/owrx/property/validators/test_bool_validator.py similarity index 100% rename from test/property/validators/test_bool_validator.py rename to test/owrx/property/validators/test_bool_validator.py diff --git a/test/property/validators/test_float_validator.py b/test/owrx/property/validators/test_float_validator.py similarity index 100% rename from test/property/validators/test_float_validator.py rename to test/owrx/property/validators/test_float_validator.py diff --git a/test/property/validators/test_integer_validator.py b/test/owrx/property/validators/test_integer_validator.py similarity index 100% rename from test/property/validators/test_integer_validator.py rename to test/owrx/property/validators/test_integer_validator.py diff --git a/test/property/validators/test_lambda_validator.py b/test/owrx/property/validators/test_lambda_validator.py similarity index 100% rename from test/property/validators/test_lambda_validator.py rename to test/owrx/property/validators/test_lambda_validator.py diff --git a/test/property/validators/test_number_validator.py b/test/owrx/property/validators/test_number_validator.py similarity index 100% rename from test/property/validators/test_number_validator.py rename to test/owrx/property/validators/test_number_validator.py diff --git a/test/property/validators/test_or_validator.py b/test/owrx/property/validators/test_or_validator.py similarity index 100% rename from test/property/validators/test_or_validator.py rename to test/owrx/property/validators/test_or_validator.py diff --git a/test/property/validators/test_regex_validator.py b/test/owrx/property/validators/test_regex_validator.py similarity index 100% rename from test/property/validators/test_regex_validator.py rename to test/owrx/property/validators/test_regex_validator.py diff --git a/test/property/validators/test_string_validator.py b/test/owrx/property/validators/test_string_validator.py similarity index 100% rename from test/property/validators/test_string_validator.py rename to test/owrx/property/validators/test_string_validator.py diff --git a/test/property/validators/test_validator.py b/test/owrx/property/validators/test_validator.py similarity index 100% rename from test/property/validators/test_validator.py rename to test/owrx/property/validators/test_validator.py