elixir-binary-tree/test/mb_binary_tree_test.exs
2025-03-14 14:41:40 -07:00

8 lines
153 B
Elixir

defmodule MbBinaryTreeTest do
use ExUnit.Case
doctest MbBinaryTree
test "greets the world" do
assert MbBinaryTree.hello() == :world
end
end