2023-11-29 12:03:18 +00:00
|
|
|
from django.test import Client, TestCase
|
|
|
|
from django.urls import reverse
|
|
|
|
|
|
|
|
|
|
|
|
class FrontendFetchTest(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.client = Client()
|
|
|
|
|
|
|
|
def test_basic_frontend_url_content(self):
|
|
|
|
path = reverse("basic")
|
|
|
|
response = self.client.get(path)
|
|
|
|
self.assertContains(response, "<html>")
|
2024-09-17 15:00:12 +00:00
|
|
|
self.assertContains(response, "-basic")
|
2023-11-29 12:03:18 +00:00
|
|
|
|
|
|
|
def test_pro_frontend_url_content(self):
|
|
|
|
path = reverse("pro")
|
|
|
|
response = self.client.get(path)
|
|
|
|
self.assertContains(response, "<html>")
|
2024-09-17 15:00:12 +00:00
|
|
|
self.assertContains(response, "-pro")
|