Skip to content

Instantly share code, notes, and snippets.

@kevsmith
Created May 26, 2009 19:37
Show Gist options
  • Save kevsmith/118248 to your computer and use it in GitHub Desktop.
Save kevsmith/118248 to your computer and use it in GitHub Desktop.
-module(iconv_t_001).
-export([start/0]).
start() ->
etap:plan(1),
etap:ok(application:start(baberl), "Start baberl app"),
etap:ok(application:stop(baberl), "Stop baberl app"),
etap:end_tests().
#!/usr/bin/env escript
%% -*- erlang -*-
%%! -pz t/ -pz ../ebin -sasl errlog_type error -boot start_sasl -noshell -s init stop
main(_) ->
iconv_t_001:start().
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment