Files
mayan-edms/mayan/apps/navigation/apps.py
Roberto Rosario 8179c35189 Simplify test runner by adding a new option '--mayan-apps' that
automatically tests all Mayan apps that report to have tests.
Change the app flag that indicates when an app has test
from 'test' to the more explicit 'has_test'.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2017-03-14 23:47:40 -04:00

12 lines
256 B
Python

from __future__ import unicode_literals
from django.utils.translation import ugettext_lazy as _
from common.apps import MayanAppConfig
class NavigationApp(MayanAppConfig):
has_tests = True
name = 'navigation'
verbose_name = _('Navigation')