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

1.1.0: Merge pull request #8 from KazuCocoa/bump_up

Compare
Choose a tag to compare
@KazuCocoa KazuCocoa released this 06 Sep 15:00
· 54 commits to master since this release

support enumerable as parameter such as the following.

  test_with_params "ast from enum",
    fn (a) ->
      assert a == ["a", "b"]
    end do
      Enum.map([{["a", "b"]}], fn (x) -> x end)
  end

thanks @artburkart ! ( #4 )