From: Michael Wood Date: Fri, 28 Oct 2016 15:48:43 +0000 (+0300) Subject: toaster: Move views tests to main testing module X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66076c006079237d97aaef4f242af5a4fa116d97;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git toaster: Move views tests to main testing module Consolidating all the tests to live in the same place to make them more discoverable and consistent as well as not cluttering up the django app directory. Signed-off-by: Michael Wood Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- diff --git a/lib/toaster/tests/views/README b/lib/toaster/tests/views/README new file mode 100644 index 00000000000..950c7c9897e --- /dev/null +++ b/lib/toaster/tests/views/README @@ -0,0 +1,4 @@ + +Django unit tests to verify classes and functions based on django Views + +To run just these tests use ./manage.py test tests.views diff --git a/lib/toaster/tests/views/__init__.py b/lib/toaster/tests/views/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/lib/toaster/toastergui/tests.py b/lib/toaster/tests/views/test_views.py similarity index 100% rename from lib/toaster/toastergui/tests.py rename to lib/toaster/tests/views/test_views.py