test files renamed with test_ prefix

error tests added

Rakefile updated with new test file names

event tasks moved into :e namespace
This commit is contained in:
2023-08-11 14:44:51 +01:00
parent 9be9dc80a2
commit 23d64ef9d8
6 changed files with 37 additions and 14 deletions

17
test/obsws/test_attrs.rb Normal file
View File

@@ -0,0 +1,17 @@
require_relative "../minitest_helper"
class AttrsTest < OBSWSTest
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