Packages

The SpellChecker module checks word correctness and suggests alternatives.

Current section

Files

Jump to
spell_checker test spell_checker_test.exs
Raw

test/spell_checker_test.exs

defmodule SpellCheckerTest do
use ExUnit.Case
doctest SpellChecker
test "Read the words" do
assert SpellChecker.is_correct!("wrong")
end
end