Class: Greyatom::Strategy

Inherits:
Object
  • Object
show all
Defined in:
lib/greyatom/tests/strategy.rb

Direct Known Subclasses

Greyatom::Strategies::PythonUnittest

Instance Method Summary collapse

Instance Method Details

#check_dependenciesObject



4
5
# File 'lib/greyatom/tests/strategy.rb', line 4

def check_dependencies
end

#configureObject



7
8
# File 'lib/greyatom/tests/strategy.rb', line 7

def configure
end

#runObject

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/greyatom/tests/strategy.rb', line 10

def run
  raise NotImplementedError, 'you must implement how this strategy runs its tests'
end