File: test_sessionstorage.py

package info (click to toggle)
python-django-formtools 1.0-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 992 kB
  • sloc: python: 2,065; makefile: 205
file content (12 lines) | stat: -rw-r--r-- 315 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
from django.test import TestCase

from django.contrib.auth.tests.utils import skipIfCustomUser
from formtools.wizard.storage.session import SessionStorage

from .storage import TestStorage


@skipIfCustomUser
class TestSessionStorage(TestStorage, TestCase):
    def get_storage(self):
        return SessionStorage