scribe/spec/models/nodes_spec.cr

27 lines
729 B
Crystal
Raw Normal View History

require "../spec_helper"
module Nodes
describe IFrame do
it "returns embedded url with subdomains" do
iframe = IFrame.new(href: "https://dev.example.com/page")
iframe.domain.should eq("dev.example.com")
end
end
describe Image do
it "adjusts the width and height proportionally" do
image = Image.new(src: "image.png", originalWidth: 1000, originalHeight: 603)
image.width.should eq("800")
image.height.should eq("482")
end
it "includes the adjusted width and height in the src" do
image = Image.new(src: "image.png", originalWidth: 1000, originalHeight: 603)
image.src.should eq("https://cdn-images-1.medium.com/fit/c/800/482/image.png")
end
end
end