您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
374 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().