25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

15 satır
374 B

  1. % This file is part of Jiffy released under the MIT license.
  2. % See the LICENSE file for more information.
  3. -module(jiffy_08_halfword_tests).
  4. -include_lib("eunit/include/eunit.hrl").
  5. -include("jiffy_util.hrl").
  6. numerical_identity_test_() ->
  7. [
  8. {"1 == 1", ?_assert(jiffy:decode(<<"1">>) == 1)},
  9. {"1 =:= 1", ?_assert(jiffy:decode(<<"1">>) =:= 1)}
  10. ].