diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/bit_builder_test.gleam | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/gleam/bit_builder_test.gleam b/test/gleam/bit_builder_test.gleam index b1635e5..48ea555 100644 --- a/test/gleam/bit_builder_test.gleam +++ b/test/gleam/bit_builder_test.gleam @@ -57,9 +57,16 @@ pub fn concat_test() { |> should.equal(<<1, 2, 3, 4, 5, 6>>) } -pub fn from_string_test() { +pub fn from_bit_string_test() { // Regression test: no additional modification of the builder bit_builder.from_bit_string(<<>>) |> bit_builder.to_bit_string |> should.equal(<<>>) } + +pub fn from_string_test() { + // Regression test: no additional modification of the builder + bit_builder.from_string("") + |> bit_builder.to_bit_string + |> should.equal(<<>>) +} |