Skip to content

Instantly share code, notes, and snippets.

@pminten
Last active January 3, 2016 18:49
Show Gist options
  • Save pminten/8504312 to your computer and use it in GitHub Desktop.
Save pminten/8504312 to your computer and use it in GitHub Desktop.
Tests in assertions aren't raised
ExUnit.start
defmodule TeardownTest do
use ExUnit.Case
def teardown do
assert 1 == 2
end
test "foo" do
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment