瀏覽代碼

Failing regression test for the halfword emulator.

pull/8/merge
Paul Davis 14 年之前
父節點
當前提交
a8d15f425a
共有 1 個文件被更改,包括 15 次插入0 次删除
  1. +15
    -0
      test/008-halfword.t

+ 15
- 0
test/008-halfword.t 查看文件

@ -0,0 +1,15 @@
#! /usr/bin/env escript
% This file is part of Jiffy released under the MIT license.
% See the LICENSE file for more information.
main([]) ->
code:add_pathz("ebin"),
code:add_pathz("test"),
etap:plan(unknown),
etap:is(jiffy:decode(<<"1">>) =:= 1, true, "1 =:= 1"),
etap:is(jiffy:decode(<<"1">>) == 1, true, "1 == 1"),
etap:end_tests().

Loading…
取消
儲存