class HrFreelancersOffersTest

Public Instance Methods

test_actions() click to toggle source
# File test/test_hr_freelancers_offers.rb, line 22
def test_actions
  api = Upwork::Api::Routers::Hr::Freelancers::Offers.new(get_client_mock)
  assert api.actions('12', {})
end
test_get_list() click to toggle source
# File test/test_hr_freelancers_offers.rb, line 12
def test_get_list
  api = Upwork::Api::Routers::Hr::Freelancers::Offers.new(get_client_mock)
  assert api.get_list({})
end
test_get_specific() click to toggle source
# File test/test_hr_freelancers_offers.rb, line 17
def test_get_specific
  api = Upwork::Api::Routers::Hr::Freelancers::Offers.new(get_client_mock)
  assert api.get_specific('12')
end