mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 23:31:52 +00:00
22 lines
517 B
Python
22 lines
517 B
Python
"""
|
|
Modified for Expo April 2021.
|
|
"""
|
|
|
|
import unittest
|
|
import re
|
|
from django.test import TestCase, SimpleTestCase, TransactionTestCase, Client
|
|
|
|
|
|
class FixturePageTests(TestCase):
|
|
# The fixtures have a password hash which is compatible with plain-text password 'secretword'
|
|
fixtures = ['auth_users', 'expo_areas', 'expo_caves']
|
|
|
|
def setUp(self):
|
|
from django.contrib.auth.models import User
|
|
self.user = User.objects.get(username='expotest')
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
|