aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/rexml/text/node_type_spec.rb
blob: a1c51b5b91b5d3e097aebde39ba3716a12b6aefe (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../../spec_helper', __FILE__)
require 'rexml/document'

describe "REXML::Text#node_type" do
  it "returns :text" do
    REXML::Text.new("test").node_type.should == :text
  end
end