summaryrefslogtreecommitdiff
path: root/spec/ruby/library/cgi/htmlextension/submit_spec.rb
blob: 8b9d9b02d8536f51a3591cb12745cd909b61c6ed (plain)
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
require File.expand_path('../../../../spec_helper', __FILE__)
require 'cgi'
require File.expand_path('../fixtures/common', __FILE__)

describe "CGI::HtmlExtension#submit" do
  before :each do
    @html = CGISpecs.cgi_new
  end

  describe "when passed no arguments" do
    it "returns a submit-'input'-element" do
      output = @html.submit
      output.should equal_element("INPUT", {"TYPE" => "submit"}, "", not_closed: true)
    end

    it "ignores a passed block" do
      output = @html.submit { "test" }
      output.should equal_element("INPUT", {"TYPE" => "submit"}, "", not_closed: true)
    end
  end

  describe "when passed value" do
    it "returns a submit-'input'-element with the passed value" do
      output = @html.submit("Example")
      output.should equal_element("INPUT", {"TYPE" => "submit", "VALUE" => "Example"}, "", not_closed: true)
    end

    it "ignores a passed block" do
      output = @html.submit("Example") { "test" }
      output.should equal_element("INPUT", {"TYPE" => "submit", "VALUE" => "Example"}, "", not_closed: true)
    end
  end

  describe "when passed value, name" do
    it "returns a submit-'input'-element with the passed value and the passed name" do
      output = @html.submit("Example", "test-name")
      output.should equal_element("INPUT", {"TYPE" => "submit", "VALUE" => "Example", "NAME" => "test-name"}, "", not_closed: true)
    end

    it "ignores a passed block" do
      output = @html.submit("Example", "test-name") { "test" }
      output.should equal_element("INPUT", {"TYPE" => "submit", "VALUE" => "Example", "NAME" => "test-name"}, "", not_closed: true)
    end
  end

  describe "when passed Hash" do
    it "returns a submit-'input'-element with the passed value" do
      output = @html.submit("Example")
      output.should equal_element("INPUT", {"TYPE" => "submit", "VALUE" => "Example"}, "", not_closed: true)
    end

    it "ignores a passed block" do
      output = @html.submit("Example") { "test" }
      output.should equal_element("INPUT", {"TYPE" => "submit", "VALUE" => "Example"}, "", not_closed: true)
    end
  end
end