Sha256: 7ff62fb8461a87f52c8fefd51f1eb8274c8296d426956f7ad4425f3b5931766d
Contents?: true
Size: 591 Bytes
Versions: 4
Compression:
Stored size: 591 Bytes
Contents
require "rubygems" dir = File.dirname(__FILE__) $:.unshift(File.expand_path("#{dir}/../vendor/js-test-core/lib")) require "js_test_core" JsTestCore::Server::DEFAULTS[:framework_path] = File.expand_path("#{dir}/../core/lib") JsTestCore::Server::DEFAULTS[:framework_name] = "screw-unit" module ScrewUnit include JsTestCore class << self def method_missing(method_name, *args, &block) if JsTestCore::Configuration.instance.respond_to?(method_name) JsTestCore::Configuration.instance.send(method_name, *args, &block) else super end end end end
Version data entries
4 entries across 4 versions & 2 rubygems