Module: TestLauncher::Frameworks::Mochajs

Defined in:
lib/test_launcher/frameworks/mochajs.rb

Defined Under Namespace

Classes: Runner, Searcher, TestCase

Class Method Summary collapse

Class Method Details

.active?(searcher) ⇒ Boolean

Returns:

  • (Boolean)


8
9
10
11
12
# File 'lib/test_launcher/frameworks/mochajs.rb', line 8

def self.active?(searcher)
  # just disable this cause it doesn't really work and it might
  # help speed things up.
  false
end

.runner(*a, **o) ⇒ Object



22
23
24
# File 'lib/test_launcher/frameworks/mochajs.rb', line 22

def self.runner(*a, **o)
  Runner.new(*a, **o)
end

.searcher(*a, **o) ⇒ Object



18
19
20
# File 'lib/test_launcher/frameworks/mochajs.rb', line 18

def self.searcher(*a, **o)
  Searcher.new(*a, **o)
end

.test_case(*a, **o) ⇒ Object



14
15
16
# File 'lib/test_launcher/frameworks/mochajs.rb', line 14

def self.test_case(*a, **o)
  TestCase.new(*a, **o)
end