All Versions
10
Latest Version
Avg Release Cycle
132 days
Latest Release
1562 days ago

Changelog History

  • v1.3.7 Changes

    December 08, 2019
    • ๐Ÿ›  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 endend do [{ [1, 0], {{1, 1}, 0, []} }, { [1, 0, 2], {{1, 1}, 0, [{2, 2}, {2, 2}]} } ] end

  • v1.3.6 Changes

    December 08, 2019
    • Fix Does not work with nil tuples #32
  • v1.3.5 Changes

    October 22, 2018
    • ๐Ÿ‘Œ support below syntax

      test_with_params "with map as second parameter", context, fn a, m -> assert a == "some" assert m.a == "world"end do [{"some", %{a: context[:hello], b: 2, c: 3}} ] end

  • v1.3.4 Changes

    July 06, 2018

    ๐Ÿ‘Œ Support

     test\_with\_params "ast from enum of maps", fn a -\> assert a == %{b: 1, c: 2} end doEnum.map([{%{b: 1, c: 2}}, {%{b: 1, c: 2}}], fn x -\> x end) end
    
  • v1.3.3 Changes

    July 06, 2018

    ๐Ÿ‘Œ Support Enum.map([%{...}])

     test\_with\_params "ast from enum of maps", fn a -\> assert a == %{b: 1, c: 2} end doEnum.map([{%{b: 1, c: 2}}], fn x -\> x end) end
    
  • v1.3.2 Changes

    July 04, 2018
    • ๐Ÿ›  Fix in multiple map's cases #23
  • v1.3.1 Changes

    January 15, 2018
    • Guard list #20
  • v1.3.0 Changes

    June 25, 2017
    • ๐Ÿ‘Œ support 1.4.0+
    • ๐Ÿ›  fix some warnings in tests
  • v1.2.0 Changes

    December 15, 2016
    • ๐Ÿ›  fix handling map %{}
  • v1.1.0 Changes

    September 06, 2016

    ๐Ÿ‘Œ support enumerable as parameter such as the following.

     test\_with\_params "ast from enum", fn (a) -\> assert a == ["a", "b"] end doEnum.map([{["a", "b"]}], fn (x) -\> x end) end
    

    thanks @artburkart ! ( #4 )