Module: TestTrack

Defined in:
lib/test_track.rb,
lib/test_track/engine.rb,
lib/test_track/version.rb,
app/controllers/test_track/tests_controller.rb

Defined Under Namespace

Classes: Engine, TestsController

Constant Summary collapse

VERSION =
"0.0.1"
@@custom_config =
false
@@jasmine_manifest =
"jasmine"
@@qunit_manifest =
"qunit"
@@application_manifest =
"application"
@@jasmine_path =
"spec/javascripts"
@@qunit_path =
"test/javascripts"

Class Method Summary collapse

Class Method Details

.setup {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:

  • _self (TestTrack)

    the object that the method was called on



23
24
25
26
27
# File 'lib/test_track.rb', line 23

def self.setup
	@@custom_config = true
	yield self
	require 'test_track/engine'
end