mirror of
https://github.com/apache/lucene.git
synced 2025-02-10 20:15:18 +00:00
2dc186201c
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@495826 13f79535-47bb-0310-9956-ffa450edef68
12 lines
274 B
Ruby
12 lines
274 B
Ruby
require 'solr/field'
|
|
|
|
class FieldTest < Test::Unit::TestCase
|
|
|
|
def test_xml
|
|
field = Solr::Field.new :creator => 'Erik Hatcher'
|
|
assert_kind_of REXML::Element, field.to_xml
|
|
assert_equal "<field name='creator'>Erik Hatcher</field>", field.to_xml.to_s
|
|
end
|
|
|
|
end
|