We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As pointed out here http://theerlangelist.com/article/macros_5 the following fails miserably too:
defmodule Kwfuns.PatternMatchingTest do use ExUnit.Case use Kwfuns # For 0.1 defkw fun(true, x), do: x defkw fun(_, x), do: :error test "true case" do assert fun(true, 42) == 42 end test "default case" do assert fun(42, 42) == :error end end
The text was updated successfully, but these errors were encountered:
added another commented testcase for 0.1 covering issue #10, TODO: ad…
3125112
…d a future tag to failing tests, that will be excluded by default for CI
RobertDober
No branches or pull requests
As pointed out here http://theerlangelist.com/article/macros_5 the following fails miserably too:
The text was updated successfully, but these errors were encountered: