1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/cgi/htmlextension/radio_button_spec.rb
eregon 401b64c4e8 Update to ruby/spec@c1b568b
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-03-04 15:09:32 +00:00

77 lines
3.2 KiB
Ruby

require_relative '../../../spec_helper'
require 'cgi'
require_relative 'fixtures/common'
describe "CGI::HtmlExtension#radio_button" do
before :each do
@html = CGISpecs.cgi_new
end
describe "when passed no arguments" do
it "returns a radio-'input'-element without a name" do
output = @html.radio_button
output.should equal_element("INPUT", {"NAME" => "", "TYPE" => "radio"}, "", not_closed: true)
end
it "ignores a passed block" do
output = @html.radio_button { "test" }
output.should equal_element("INPUT", {"NAME" => "", "TYPE" => "radio"}, "", not_closed: true)
end
end
describe "when passed name" do
it "returns a radio-'input'-element with the passed name" do
output = @html.radio_button("test")
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "radio"}, "", not_closed: true)
end
it "ignores a passed block" do
output = @html.radio_button("test") { "test" }
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "radio"}, "", not_closed: true)
end
end
describe "CGI::HtmlExtension#checkbox when passed name, value" do
it "returns a radio-'input'-element with the passed name and value" do
output = @html.radio_button("test", "test-value")
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "radio", "VALUE" => "test-value"}, "", not_closed: true)
end
it "ignores a passed block" do
output = @html.radio_button("test", "test-value") { "test" }
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "radio", "VALUE" => "test-value"}, "", not_closed: true)
end
end
describe "when passed name, value, checked" do
it "returns a checked radio-'input'-element with the passed name and value when checked is true" do
output = @html.radio_button("test", "test-value", true)
output.should equal_element("INPUT", {"CHECKED" => true, "NAME" => "test", "TYPE" => "radio", "VALUE" => "test-value"}, "", not_closed: true)
output = @html.radio_button("test", "test-value", false)
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "radio", "VALUE" => "test-value"}, "", not_closed: true)
output = @html.radio_button("test", "test-value", nil)
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "radio", "VALUE" => "test-value"}, "", not_closed: true)
end
it "ignores a passed block" do
output = @html.radio_button("test", "test-value", nil) { "test" }
output.should equal_element("INPUT", {"NAME" => "test", "TYPE" => "radio", "VALUE" => "test-value"}, "", not_closed: true)
end
end
describe "when passed Hash" do
it "returns a radio-'input'-element using the passed Hash for attributes" do
attributes = {"NAME" => "test", "VALUE" => "test-value", "CHECKED" => true}
output = @html.radio_button(attributes)
output.should equal_element("INPUT", attributes, "", not_closed: true)
end
it "ignores a passed block" do
attributes = {"NAME" => "test", "VALUE" => "test-value", "CHECKED" => true}
output = @html.radio_button(attributes) { "test" }
output.should equal_element("INPUT", attributes, "", not_closed: true)
end
end
end