From 311d7d633067ad151af86ba17845c385ac89f17b Mon Sep 17 00:00:00 2001 From: Ivan Kolodyazhny Date: Mon, 4 Jun 2018 13:03:31 +0000 Subject: [PATCH] Rename test files to test_* pattern We're going to switch to default Django test runner by default. This patch renames test files to make tests descoverable by Nose and Django test runners without addidional configuration. Related blueprint: improve-horizon-testing Change-Id: If4ee8dcd173c2f331bf34cf93c489029489c63ea --- heat_dashboard/test/tests/api/{heat_tests.py => test_heat.py} | 0 .../test/tests/api/{heat_rest_tests.py => test_heat_rest.py} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename heat_dashboard/test/tests/api/{heat_tests.py => test_heat.py} (100%) rename heat_dashboard/test/tests/api/{heat_rest_tests.py => test_heat_rest.py} (100%) diff --git a/heat_dashboard/test/tests/api/heat_tests.py b/heat_dashboard/test/tests/api/test_heat.py similarity index 100% rename from heat_dashboard/test/tests/api/heat_tests.py rename to heat_dashboard/test/tests/api/test_heat.py diff --git a/heat_dashboard/test/tests/api/heat_rest_tests.py b/heat_dashboard/test/tests/api/test_heat_rest.py similarity index 100% rename from heat_dashboard/test/tests/api/heat_rest_tests.py rename to heat_dashboard/test/tests/api/test_heat_rest.py