Sha256: 560996fc00dedf43d806e343afb337b8a00e6e129e33809f182c3e0924bdda60
Contents?: true
Size: 681 Bytes
Versions: 6
Compression:
Stored size: 681 Bytes
Contents
require "spec_helper" module Refinery describe "dialog" do login_refinery_user context "links" do it "have iframe src" do visit refinery.admin_dialog_path('Link') page.should have_selector("iframe[src='/refinery/pages_dialogs/link_to']") end end context "images" do it "have iframe src" do visit refinery.admin_dialog_path('Image') page.should have_selector("iframe[src='/refinery/images/insert?modal=true']") end end context "a" do it "have empty iframe src" do visit refinery.admin_dialog_path('a') page.should have_selector("iframe[src='']") end end end end
Version data entries
6 entries across 6 versions & 1 rubygems