mirror of
https://github.com/onyx-and-iris/obsws-ruby.git
synced 2024-11-15 18:50:47 +00:00
18 lines
372 B
Ruby
18 lines
372 B
Ruby
require_relative "../minitest_helper"
|
|
|
|
class AttrsTest < Minitest::Test
|
|
def test_get_version_attrs
|
|
resp = OBSWSTest.r_client.get_version
|
|
assert resp.attrs ==
|
|
%w[
|
|
available_requests
|
|
obs_version
|
|
obs_web_socket_version
|
|
platform
|
|
platform_description
|
|
rpc_version
|
|
supported_image_formats
|
|
]
|
|
end
|
|
end
|