ExUnit pending tests

Reference for use of Tags in ExUnit :

:skip - skips the test with the given reason

…which can be used as:

@tag skip: "this test is incomplete - decide on final biz logic and assert"
test "do the needful" do
  # assertions
end
6 Likes