1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
require File.expand_path('../../../../spec_helper', __FILE__)
require 'cgi'
require File.expand_path('../fixtures/common', __FILE__)
describe "CGI::HtmlExtension#image_button" do
before(:each) do
@html = CGISpecs.cgi_new
end
describe "when passed no arguments" do
it "returns an image-'input'-element without a source image" do
output = @html.image_button
output.should equal_element("INPUT", {"SRC" => "", "TYPE" => "image"}, "", :not_closed => true)
end
it "ignores a passed block" do
output = @html.image_button { "test" }
output.should equal_element("INPUT", {"SRC" => "", "TYPE" => "image"}, "", :not_closed => true)
end
end
describe "when passed src" do
it "returns an image-'input'-element with the passed src" do
output = @html.image_button("/path/to/image.png")
output.should equal_element("INPUT", {"SRC" => "/path/to/image.png", "TYPE" => "image"}, "", :not_closed => true)
end
it "ignores a passed block" do
output = @html.image_button("/path/to/image.png") { "test" }
output.should equal_element("INPUT", {"SRC" => "/path/to/image.png", "TYPE" => "image"}, "", :not_closed => true)
end
end
describe "when passed src, name" do
it "returns an image-'input'-element with the passed src and name" do
output = @html.image_button("/path/to/image.png", "test")
output.should equal_element("INPUT", {"SRC" => "/path/to/image.png", "TYPE" => "image", "NAME" => "test"}, "", :not_closed => true)
end
it "ignores a passed block" do
output = @html.image_button("/path/to/image.png", "test") { "test" }
output.should equal_element("INPUT", {"SRC" => "/path/to/image.png", "TYPE" => "image", "NAME" => "test"}, "", :not_closed => true)
end
end
describe "when passed src, name, alt" do
it "returns an image-'input'-element with the passed src, name and alt" do
output = @html.image_button("/path/to/image.png", "test", "alternative")
output.should equal_element("INPUT", {"SRC" => "/path/to/image.png", "TYPE" => "image", "NAME" => "test", "ALT" => "alternative"}, "", :not_closed => true)
end
it "ignores a passed block" do
output = @html.image_button("/path/to/image.png", "test", "alternative") { "test" }
output.should equal_element("INPUT", {"SRC" => "/path/to/image.png", "TYPE" => "image", "NAME" => "test", "ALT" => "alternative"}, "", :not_closed => true)
end
end
describe "when passed Hash" do
it "returns a image-'input'-element using the passed Hash for attributes" do
output = @html.image_button("NAME" => "test", "VALUE" => "test-value")
output.should equal_element("INPUT", {"SRC" => "", "TYPE" => "image", "NAME" => "test", "VALUE" => "test-value"}, "", :not_closed => true)
end
it "ignores a passed block" do
output = @html.image_button("NAME" => "test", "VALUE" => "test-value") { "test" }
output.should equal_element("INPUT", {"SRC" => "", "TYPE" => "image", "NAME" => "test", "VALUE" => "test-value"}, "", :not_closed => true)
end
end
end
|