mirror of
https://github.com/onyx-and-iris/obsws-python.git
synced 2025-05-20 13:50:23 +01:00
Merge pull request #57 from onyx-and-iris/dev
Return response class for toggle_record
This commit is contained in:
commit
8e8062d5c8
@ -171,7 +171,9 @@ logging.basicConfig(level=logging.DEBUG)
|
||||
|
||||
Install [hatch][hatch-install] and then:
|
||||
|
||||
`hatch test`
|
||||
```
|
||||
hatch test
|
||||
```
|
||||
|
||||
### Official Documentation
|
||||
|
||||
|
@ -1784,7 +1784,7 @@ class ReqClient:
|
||||
|
||||
|
||||
"""
|
||||
self.send("ToggleRecord")
|
||||
return self.send("ToggleRecord")
|
||||
|
||||
def start_record(self):
|
||||
"""
|
||||
|
@ -1 +1 @@
|
||||
version = "1.7.1"
|
||||
version = "1.7.2"
|
||||
|
@ -13,35 +13,8 @@ class TestRequests:
|
||||
|
||||
def test_get_hot_key_list(self):
|
||||
resp = req_cl.get_hot_key_list()
|
||||
obsbasic_hotkey_list = [
|
||||
"OBSBasic.SelectScene",
|
||||
"OBSBasic.QuickTransition.1",
|
||||
"OBSBasic.QuickTransition.2",
|
||||
"OBSBasic.QuickTransition.3",
|
||||
"OBSBasic.StartStreaming",
|
||||
"OBSBasic.StopStreaming",
|
||||
"OBSBasic.ForceStopStreaming",
|
||||
"OBSBasic.StartRecording",
|
||||
"OBSBasic.StopRecording",
|
||||
"OBSBasic.PauseRecording",
|
||||
"OBSBasic.UnpauseRecording",
|
||||
"OBSBasic.SplitFile",
|
||||
"OBSBasic.StartReplayBuffer",
|
||||
"OBSBasic.StopReplayBuffer",
|
||||
"OBSBasic.StartVirtualCam",
|
||||
"OBSBasic.StopVirtualCam",
|
||||
"OBSBasic.EnablePreview",
|
||||
"OBSBasic.DisablePreview",
|
||||
"OBSBasic.EnablePreviewProgram",
|
||||
"OBSBasic.DisablePreviewProgram",
|
||||
"OBSBasic.ShowContextBar",
|
||||
"OBSBasic.HideContextBar",
|
||||
"OBSBasic.Transition",
|
||||
"OBSBasic.ResetStats",
|
||||
"OBSBasic.Screenshot",
|
||||
"OBSBasic.SelectedSourceScreenshot",
|
||||
]
|
||||
assert all(x in resp.hotkeys for x in obsbasic_hotkey_list)
|
||||
assert resp.hotkeys
|
||||
assert any(x.startswith("OBSBasic.") for x in resp.hotkeys)
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"name,data",
|
||||
|
Loading…
x
Reference in New Issue
Block a user