You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/test/controllers/asciicast_animation_control...

10 lines
309 B
Elixir

defmodule Asciinema.AsciicastAnimationControllerTest do
use AsciinemaWeb.ConnCase
test "shows GIF generation instructions", %{conn: conn} do
asciicast = fixture(:asciicast)
conn = get conn, asciicast_animation_download_path(conn, asciicast)
assert html_response(conn, 200) =~ "GIF"
end
end