Current section

Files

Jump to
brcpfcnpj test brcpfcnpj_test.exs
Raw

test/brcpfcnpj_test.exs

defmodule BrcpfcnpjTest do
use ExUnit.Case
test "should return the formated cpf" do
assert Brcpfcnpj.cpf_format(%Cpf{number: "11144477735"}) =="111.444.777-35"
end
test "should return the formated to wrong cpf" do
assert Brcpfcnpj.cpf_format(%Cpf{number: "11144477731"}) ==nil
end
test "should return the formated cnpj" do
assert Brcpfcnpj.cnpj_format(%Cnpj{number: "69103604000160"}) =="69.103.604/0001-60"
end
test "should return the formated to wrong cnpj" do
assert Brcpfcnpj.cnpj_format(%Cnpj{number: "69103604000161"}) ==nil
end
end