You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 line
365 B

  1. #! /usr/bin/env escript
  2. % This file is part of Jiffy released under the MIT license.
  3. % See the LICENSE file for more information.
  4. main([]) ->
  5. code:add_pathz("ebin"),
  6. code:add_pathz("test"),
  7. etap:plan(unknown),
  8. etap:is(jiffy:decode(<<"1">>) =:= 1, true, "1 =:= 1"),
  9. etap:is(jiffy:decode(<<"1">>) == 1, true, "1 == 1"),
  10. etap:end_tests().