Packages

Kovacs - A simple ExUnit test runner It will monitor the file system and run test files when it detects changes.

Current section

Files

Jump to
kovacs lib kovacs.ex
Raw

lib/kovacs.ex

defmodule Kovacs do
use Application
def start(_type, _args) do
Kovacs.Supervisor.start_link
end
def watch(dir_to_watch) do
Kovacs.Watcher.Proc.create(dir_to_watch)
end
end