mirror of
https://github.com/TheRealOwenRees/plantid-discord-bot.git
synced 2026-07-23 20:46:58 +00:00
10 lines
260 B
Elixir
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
|