Created
April 17, 2020 15:58
-
-
Save nicholasjhenry/1938acbcb587feb8e82ab20585176c1e to your computer and use it in GitHub Desktop.
Run a single Elixir test outside of a project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# elixir example.exs | |
ExUnit.start | |
defmodule ExampleTest do | |
use ExUnit.Case | |
test "example" do | |
assert true == true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment