8 lines
206 B
Elixir
8 lines
206 B
Elixir
defmodule ProxmoxAgentTest do
|
|
use ExUnit.Case, async: true
|
|
|
|
test "version/0 returns a non-empty string" do
|
|
assert is_binary(ProxmoxAgent.version())
|
|
assert ProxmoxAgent.version() != ""
|
|
end
|
|
end
|