class OrganizationUsersTest

Public Instance Methods

test_get_my_info() click to toggle source
# File test/test_organization_users.rb, line 12
def test_get_my_info
  api = Upwork::Api::Routers::Organization::Users.new(get_client_mock)
  assert api.get_my_info
end
test_get_specific() click to toggle source
# File test/test_organization_users.rb, line 17
def test_get_specific
  api = Upwork::Api::Routers::Organization::Users.new(get_client_mock)
  assert api.get_specific('12')
end