Skip to content
This repository was archived by the owner on Nov 19, 2023. It is now read-only.

1.3.7

Latest
Compare
Choose a tag to compare
@KazuCocoa KazuCocoa released this 08 Dec 06:04
· 8 commits to master since this release
  • fix nested tuple cases in a list #36
  test_with_params "nested tuple in a list", fn a, expected ->
    case a do
      [1, 0] ->
        assert {{1, 1}, 0, []} == expected

      [1, 0, 2] ->
        assert {{1, 1}, 0, [{2, 2}, {2, 2}]} == expected
    end
  end do
    [
      {
        [1, 0],
        {{1, 1}, 0, []}
      },
      {
        [1, 0, 2],
        {{1, 1}, 0, [{2, 2}, {2, 2}]}
      }
    ]
  end