blob: 0dc30e94f78b5711229f9b720f489114c1fdec8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require_relative '../../../spec_helper'
ruby_version_is ""..."3.5" do
require_relative 'fixtures/common'
require 'cgi'
describe "CGI::HtmlExtension#frame" do
before :each do
@html = CGISpecs.cgi_new("html4Fr")
end
it "initializes the HTML Generation methods for the Frameset version of HTML4" do
@html.frameset.should == "<FRAMESET></FRAMESET>"
@html.frameset { "link text" }.should == "<FRAMESET>link text</FRAMESET>"
end
end
end
|