Sha256: 8c8d45dd902d531f7d4629e0160f735fbce1e76971cdca846790fc8c27b20ac0
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
require 'multi_json' require 'yaml' require 'fileutils' require 'selenium-webdriver' module JsTestDriver autoload :Application, 'js_test_driver/application' autoload :Config, 'js_test_driver/config' autoload :ConfigFactory, 'js_test_driver/config_factory' autoload :HtmlFixture, 'js_test_driver/html_fixture' autoload :MissingDependencyError, 'js_test_driver/missing_dependency_error' autoload :RemoteBrowser, 'js_test_driver/remote_browser' autoload :Runner, 'js_test_driver/runner' autoload :RuntimeConfig, 'js_test_driver/runtime_config' autoload :VERSION, 'js_test_driver/version' module CLI autoload :CaptureBrowsers, 'js_test_driver/cli/capture_browsers' autoload :Run, 'js_test_driver/cli/run' autoload :RunTests, 'js_test_driver/cli/run_tests' autoload :StartServer, 'js_test_driver/cli/start_server' end module Commands autoload :BaseCommand, 'js_test_driver/commands/base_command' autoload :GenerateCoverageReport, 'js_test_driver/commands/generate_coverage_report' autoload :JstdJarCommand, 'js_test_driver/commands/jstd_jar_command' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
js-test-driver-rails-0.5.0.pre3 | lib/js_test_driver.rb |