This repository has been archived on 2022-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
payments/billing/tests.py

18 lines
474 B
Python

"""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"))