import os import re from django.contrib.staticfiles import finders from django.test import Client from .classes import BootTestCase from app.contexts.settings import load as load_settings class TestSettings(BootTestCase): def setUp(self): pass def tearDown(self): pass def test_settings(self): c = Client() c.login(username="testuser", password="test1234") # Get a page res = c.get('/dashboard/', follow=True) body = res.content.decode("utf-8") # There shouldn't be a footer by default self.assertFalse("