class Gondola

Gondola - base_converter.rb:

Class definition for turning one format into
another

Gondola - html_converter.rb:

Class definition for turning Selenium HTML into
webdriver ruby code

Gondola v2 - suiterunner.rb:

A wrapper for all the tasks required for launching a run
of a test suite or test case on several browsers

Gondola - tasks.rb:

Some Rake Tasks to run suites of tests
from Ruby's Rake system

Gondola - tester.rb:

Module which contains all the necessary functions
for asserting and verifying various functions without
the need for a unit testing framework

Constants

DEFAULT_CONFIG
VERSION

Attributes

runner[R]

Public Class Methods

new() { |runner| ... } click to toggle source
# File lib/gondola.rb, line 29
def initialize
  @runner = Gondola::SuiteRunner.new
  yield @runner if block_given?
end