"""Billing model tests""" from pprint import pprint from django.test import TestCase, Client from . import views class DummyTestCase(TestCase): """Placeholder test to get plumbing going""" def test_dummy_index(self): """Placeholder test to setup plumbing""" response = self.client.get("/") pprint(response.content) self.assertEqual(response.status_code, 200) self.assertContains(response, bytes(views.RESPONSE, "utf-8"))