Packages

A tool for extracting and processing information from various file formats, including CSV, JSON, and XML.

Current section

Files

Jump to
file_crusher test file_crusher_test.exs
Raw

test/file_crusher_test.exs

defmodule FileCrusherTest do
use ExUnit.Case
doctest FileCrusher
test "greets the world" do
assert FileCrusher.hello() == :world
end
test "validate .xls file" do
assert File.exists?("./data.xls")
assert FileCrusher.get_file_extension("./data.xls") == ".xls"
end
end