Files
mayan-edms/mayan/apps/motd/tests/literals.py
Roberto Rosario 16d8fb9fea Modernize MOTD app
Update API code to use viewsets. Update links and URLs to use
keyword arguments.

Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
2019-01-19 01:00:58 -04:00

7 lines
242 B
Python

from __future__ import unicode_literals
TEST_MESSAGE_LABEL = 'test label'
TEST_MESSAGE_LABEL_EDITED = '{} edited'.format(TEST_MESSAGE_LABEL)
TEST_MESSAGE_TEXT = 'test message'
TEST_MESSAGE_TEXT_EDITED = '{} edited'.format(TEST_MESSAGE_TEXT)