towerops/test/snmpkit/snmp_test.exs
2026-01-28 10:31:22 -06:00

10 lines
304 B
Elixir

defmodule SnmpKit.SNMPTest do
use ExUnit.Case, async: true
# These tests verify that the SNMP module delegation API exists.
# They don't make actual SNMP calls - just verify the module loads.
test "SnmpKit.SNMP module exists and loads" do
assert Code.ensure_loaded?(SnmpKit.SNMP)
end
end