9 lines
141 B
Elixir
9 lines
141 B
Elixir
|
defmodule ShiftJisTest do
|
||
|
use ExUnit.Case
|
||
|
doctest ShiftJis
|
||
|
|
||
|
test "greets the world" do
|
||
|
assert ShiftJis.hello() == :world
|
||
|
end
|
||
|
end
|