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