class HrRolesTest

Public Instance Methods

test_get_all() click to toggle source
# File test/test_hr_roles.rb, line 12
def test_get_all
  api = Upwork::Api::Routers::Hr::Roles.new(get_client_mock)
  assert api.get_all
end
test_get_by_specific_user() click to toggle source
# File test/test_hr_roles.rb, line 17
def test_get_by_specific_user
  api = Upwork::Api::Routers::Hr::Roles.new(get_client_mock)
  assert api.get_by_specific_user('12')
end