Files
plantid-discord-bot/test/commands/help_test.exs
T
2024-12-14 00:17:30 +01:00

10 lines
260 B
Elixir

defmodule PlantIdDiscordBotTest.Cog.Help do
use ExUnit.Case
test "/help" do
{:ok, response} = PlantIdDiscordBot.Cog.Info.help(%{data: %{name: "help"}})
[embed] = response[:data][:embeds]
assert match?(%Nostrum.Struct.Embed{}, embed)
end
end