diff --git a/tests/test_views/test_general.py b/tests/test_views/test_general.py
new file mode 100644
index 0000000000000000000000000000000000000000..88312508c24ba6d9175b29b0b60fb48079cdfb9d
--- /dev/null
+++ b/tests/test_views/test_general.py
@@ -0,0 +1,24 @@
+"""
+Tests for general DD functionality.
+"""
+
+# Third-Party Imports.
+from django.test import override_settings
+from django_expanded_test_cases import IntegrationTestCase
+
+
+class DumpDieGeneralTestCase(IntegrationTestCase):
+    """Verify handling of dumped "simple" types."""
+
+    url = "django_dump_die:simple-type-example"
+
+    @override_settings(DEBUG=False)
+    def test_debug_off_skips_all_dumps(self):
+        """Verify no dumps occur when debug is off."""
+        self.assertGetResponse(
+            self.url,
+            expected_title="Sample page",
+            expected_header="Sample page",
+            expected_content=["<p>Sample page body content</p>"],
+            expected_not_content=["<div><h1>Django DumpDie</h1></div>"],
+        )