module RainforestQA::Modules::Tests

Public Instance Methods

create_test(attributes = {}) click to toggle source
# File lib/rainforestqa/modules/tests.rb, line 20
def create_test(attributes = {})
  perform(:post, "tests", attributes)
end
delete_test(id, options = {}) click to toggle source
# File lib/rainforestqa/modules/tests.rb, line 24
def delete_test(id, options = {})
  perform(:delete, "tests/#{id}", options )
end
test(id, options = {}) click to toggle source
# File lib/rainforestqa/modules/tests.rb, line 12
def test(id, options = {})
  perform(:get, "tests/#{id}", options)
end
tests(options = {}) click to toggle source
# File lib/rainforestqa/modules/tests.rb, line 8
def tests(options = {})
  perform(:get, "tests", options)
end
update_test(id, attributes = {}) click to toggle source
# File lib/rainforestqa/modules/tests.rb, line 16
def update_test(id, attributes = {})
  perform(:put, "tests/#{id}", attributes)
end