summaryrefslogtreecommitdiff
path: root/horizon/test/test_dashboards/cats/dashboard.py
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/test/test_dashboards/cats/dashboard.py')
-rw-r--r--horizon/test/test_dashboards/cats/dashboard.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/horizon/test/test_dashboards/cats/dashboard.py b/horizon/test/test_dashboards/cats/dashboard.py
deleted file mode 100644
index 25c2bd4b..00000000
--- a/horizon/test/test_dashboards/cats/dashboard.py
+++ /dev/null
@@ -1,25 +0,0 @@
-from django.utils.translation import ugettext_lazy as _
-
-import horizon
-
-
-class CuteGroup(horizon.PanelGroup):
- slug = "cute"
- name = _("Cute Cats")
- panels = ('kittens',)
-
-
-class FierceGroup(horizon.PanelGroup):
- slug = "fierce"
- name = _("Fierce Cats")
- panels = ("tigers",)
-
-
-class Cats(horizon.Dashboard):
- name = _("Cats")
- slug = "cats"
- panels = (CuteGroup, FierceGroup)
- default_panel = 'kittens'
-
-
-horizon.register(Cats)