class HrClientsOffersTest

Public Instance Methods

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