mirror of
https://github.com/TheRealOwenRees/plantid-discord-bot.git
synced 2026-07-23 12:36:58 +00:00
10 lines
263 B
Elixir
10 lines
263 B
Elixir
defmodule PlantIdDiscordBotTest.Cog.Stats do
|
|
use ExUnit.Case
|
|
|
|
test "/stats" do
|
|
{:ok, response} = PlantIdDiscordBot.Cog.Info.info(%{data: %{name: "stats"}})
|
|
[embed] = response[:data][:embeds]
|
|
assert match?(%Nostrum.Struct.Embed{}, embed)
|
|
end
|
|
end
|