blob: 2cb388cabf12e41cb1ad516bb5a0477b4dd17ef9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /usr/bin/env escript
%% -*- erlang -*- mode
%%! -pa ebin -pa ../lager/ebin -pa ../lager/deps/goldrush/ebin -pa ../mochiweb/ebin -s lager -config test/config/check.config
%% To enable logging, pass `-s lager' to erlang by adding it to the
%% %%!-line above.
%% Tweak the amount of logging by changing `lager_console_backend' in
%% config/check.config.
main(_) ->
ok = dnssecport:test().
ok = catlfish:test().
|