Sha256: d2896d5c749ff320110c05b1e6ef4282be072995e46c5341ca9b6180c109c92f

Contents?: true

Size: 402 Bytes

Versions: 3

Compression:

Stored size: 402 Bytes

Contents

require File.expand_path('../fixtures/common', __FILE__)
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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubysl-cgi-1.0.0 spec/htmlextension/frame_spec.rb
rubysl-cgi-2.0.1 spec/htmlextension/frame_spec.rb
rubysl-cgi-2.0.0 spec/htmlextension/frame_spec.rb