summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/cgi/htmlextension/br_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/cgi/htmlextension/br_spec.rb')
-rw-r--r--spec/rubyspec/library/cgi/htmlextension/br_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/rubyspec/library/cgi/htmlextension/br_spec.rb b/spec/rubyspec/library/cgi/htmlextension/br_spec.rb
new file mode 100644
index 0000000000..875d335fe5
--- /dev/null
+++ b/spec/rubyspec/library/cgi/htmlextension/br_spec.rb
@@ -0,0 +1,22 @@
+require File.expand_path('../../../../spec_helper', __FILE__)
+require 'cgi'
+require File.expand_path('../fixtures/common', __FILE__)
+
+describe "CGI::HtmlExtension#br" do
+ before :each do
+ @html = CGISpecs.cgi_new
+ end
+
+ describe "when each HTML generation" do
+ it "returns the doctype declaration for HTML3" do
+ CGISpecs.cgi_new("html3").br.should == "<BR>"
+ end
+
+ it "returns the doctype declaration for HTML4" do
+ CGISpecs.cgi_new("html4").br.should == "<BR>"
+ end
+ it "returns the doctype declaration for the Transitional version of HTML4" do
+ CGISpecs.cgi_new("html4Tr").br.should == "<BR>"
+ end
+ end
+end