class Viga::Controller

Public Instance Methods

start() click to toggle source
# File lib/viga/controller.rb, line 7
def start
  DatabaseCleaner.start
  fixtory(params[:scenario_id])
  head :ok
end
stop() click to toggle source
# File lib/viga/controller.rb, line 13
def stop
  DatabaseCleaner.clean
  head :ok
end