We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb7c4cd commit e566305Copy full SHA for e566305
tests/test_integration.py
@@ -174,6 +174,12 @@ def test_is_toolbar_request_override_request_urlconf(self):
174
self.request.path = "/__debug__/render_panel/"
175
self.assertTrue(self.toolbar.is_toolbar_request(self.request))
176
177
+ def test_data_gone(self):
178
+ response = self.client.get(
179
+ "/__debug__/render_panel/?store_id=GONE&panel_id=RequestPanel"
180
+ )
181
+ self.assertIn("Please reload the page and retry.", response.json()["content"])
182
+
183
184
@override_settings(DEBUG=True)
185
class DebugToolbarIntegrationTestCase(IntegrationTestCase):
0 commit comments