Packages
Story BDD tool based on cucumber. Parses Gherkin formatted feature files and executes them as tests.
Current section
Files
Jump to
Current section
Files
lib/white_bread/application.ex
defmodule WhiteBread.Application do
@moduledoc false
use Application
def start(_, _) do
import Supervisor.Spec
child = supervisor(WhiteBread.Supervisor, [])
opts = [strategy: :one_for_one, name: WhiteBread.Supervisor]
Supervisor.start_link([child], opts)
end
def stop() do
WhiteBread.EventManager.stop()
end
end