13 lines
334 B
Elixir
13 lines
334 B
Elixir
defmodule Parser.UtilsTest do
|
|
use ExUnit.Case, async: true
|
|
use ExUnitProperties
|
|
|
|
# Placeholder for future utility function tests
|
|
|
|
# Placeholder property test for future utility functions
|
|
property "placeholder property always passes" do
|
|
check all n <- StreamData.integer() do
|
|
assert is_integer(n)
|
|
end
|
|
end
|
|
end
|