summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/document/doctype_spec.rb
blob: 5f277f6ad6018815ec9ba6bb1f06cefcecb23067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rexml/document'
require File.expand_path('../../../../spec_helper', __FILE__)

describe "REXML::Document#doctype" do
  it "returns the doctype" do
    d = REXML::Document.new
    dt = REXML::DocType.new("foo")
    d.add dt
    d.doctype.should == dt
  end

  it "returns nil if there's no doctype" do
    REXML::Document.new.doctype.should == nil
  end
end