Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

encode_unsigned_1 #676

Open
wants to merge 17 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
move integration test to binary module
mlwilkerson committed Nov 2, 2020
commit 32e04336f3d916686c5e595c5e45d99040a45672
2 changes: 2 additions & 0 deletions native_implemented/otp/tests/internal/lib/binary.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#[path = "binary/encode_unsigned_1.rs"]
pub mod encode_unsigned_1;
Original file line number Diff line number Diff line change
@@ -3,4 +3,4 @@
-import(erlang, [display/1]).

start() ->
display(erlang:encode_unsigned(11111111)).
display(binary:encode_unsigned(11111111)).
2 changes: 0 additions & 2 deletions native_implemented/otp/tests/internal/lib/erlang.rs
Original file line number Diff line number Diff line change
@@ -68,8 +68,6 @@ pub mod div_2;
pub mod divide_2;
#[path = "erlang/element_2.rs"]
pub mod element_2;
#[path = "erlang/encode_unsigned_1.rs"]
pub mod encode_unsigned_1;
#[path = "erlang/erase_0.rs"]
pub mod erase_0;
#[path = "erlang/erase_1.rs"]