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/spec/api/oembed_spec.rb

23 lines
647 B
Ruby

require 'rails_helper'
describe "oEmbed provider" do
let(:asciicast) { create(:asciicast) }
it "responds with status 200 for JSON" do
get "/oembed?url=http://localhost:3000/a/#{asciicast.id}&format=json&maxwidth=500&maxheight=300"
expect(response.status).to eq(200)
end
it "responds with status 200 for XML" do
get "/oembed?url=http://localhost:3000/a/#{asciicast.id}&format=xml"
expect(response.status).to eq(200)
end
it "responds with status 200 when only maxwidth given" do
get "/oembed?url=http://localhost:3000/a/#{asciicast.id}&format=json&maxwidth=500"
expect(response.status).to eq(200)
end
end