spec/lib/brief/content_transformation_spec.rb in brief-1.11.8 vs spec/lib/brief/content_transformation_spec.rb in brief-1.11.9
- old
+ new
@@ -13,6 +13,14 @@
it "automatically inlines SVG content for us" do
html = wireframe.to_html
expect(html).to include("svg-wrapper")
expect(html).to include("svg version")
end
+
+ describe "HREF Generation" do
+ it "does nothing by default" do
+ expect(Brief.testcase.get_href_for("brief://me")).to eq("brief://me")
+ end
+ end
end
+
+