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 1cdbfd1 commit b257545Copy full SHA for b257545
tests/test_keyboard_shortcuts_route.py
@@ -1,4 +1,5 @@
1
OK_STATUS_CODE = 200
2
+DATA_IN_SHORTCUTS_PAGE = b'General Shortcuts'
3
4
5
class TestKeyboardShortcuts:
@@ -7,3 +8,7 @@ class TestKeyboardShortcuts:
7
8
def test_get_page(self, client):
9
res = client.get(self.URL)
10
assert res.status_code == OK_STATUS_CODE
11
+
12
+ def test_get_keyboard_shortcuts_page(self, client):
13
+ res = client.get(self.URL)
14
+ assert DATA_IN_SHORTCUTS_PAGE in res.content
0 commit comments