diff options
Diffstat (limited to 'gen/test/gleam@atom_test.erl')
-rw-r--r-- | gen/test/gleam@atom_test.erl | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gen/test/gleam@atom_test.erl b/gen/test/gleam@atom_test.erl index da1f699..91a16bd 100644 --- a/gen/test/gleam@atom_test.erl +++ b/gen/test/gleam@atom_test.erl @@ -4,38 +4,40 @@ -export([from_string_test/0, create_from_string_test/0, to_string_test/0]). from_string_test() -> - gleam@should:be_ok(gleam@atom:from_string(<<"ok">>)), - gleam@should:be_ok(gleam@atom:from_string(<<"expect">>)), + gleam@should:be_ok(gleam@atom:from_string(<<"ok"/utf8>>)), + gleam@should:be_ok(gleam@atom:from_string(<<"expect"/utf8>>)), gleam@should:equal( - gleam@atom:from_string(<<"this is not an atom we have seen before">>), + gleam@atom:from_string( + <<"this is not an atom we have seen before"/utf8>> + ), {error, atom_not_loaded} ). create_from_string_test() -> gleam@should:equal( - {ok, gleam@atom:create_from_string(<<"ok">>)}, - gleam@atom:from_string(<<"ok">>) + {ok, gleam@atom:create_from_string(<<"ok"/utf8>>)}, + gleam@atom:from_string(<<"ok"/utf8>>) ), gleam@should:equal( - {ok, gleam@atom:create_from_string(<<"expect">>)}, - gleam@atom:from_string(<<"expect">>) + {ok, gleam@atom:create_from_string(<<"expect"/utf8>>)}, + gleam@atom:from_string(<<"expect"/utf8>>) ), gleam@should:equal( {ok, gleam@atom:create_from_string( - <<"this is another atom we have not seen before">> + <<"this is another atom we have not seen before"/utf8>> )}, gleam@atom:from_string( - <<"this is another atom we have not seen before">> + <<"this is another atom we have not seen before"/utf8>> ) ). to_string_test() -> gleam@should:equal( - gleam@atom:to_string(gleam@atom:create_from_string(<<"ok">>)), - <<"ok">> + gleam@atom:to_string(gleam@atom:create_from_string(<<"ok"/utf8>>)), + <<"ok"/utf8>> ), gleam@should:equal( - gleam@atom:to_string(gleam@atom:create_from_string(<<"expect">>)), - <<"expect">> + gleam@atom:to_string(gleam@atom:create_from_string(<<"expect"/utf8>>)), + <<"expect"/utf8>> ). |