Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 657 Bytes

File metadata and controls

21 lines (13 loc) · 657 Bytes

Next Stop: Meet the Log and Clients

Overview

This tour shows how to use the RubyTest framework to test:

  • The GitHub REST API.
  • The GitHub web UI.

The domain-specific GitHub framework is layered onto the underlying RubyTest core framework, and implements:

  • A domain-specific web UI client.
  • Page objects, corresponding to web UI pages.
  • A domain-specific REST API client.
  • Endpoint objects, corresponding to REST API endpoints.
  • Data objects, corresponding to REST API resources.

Next Stop: Meet the Log and Clients