* test/rexml/test_xpath*.rb: Move to ...

* test/rexml/xpath/*.rb: ... here.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2014-02-22 11:25:47 +00:00
Родитель 464f68a3e5
Коммит 9a695f113a
6 изменённых файлов: 11 добавлений и 10 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Sat Feb 22 20:24:43 2014 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_xpath*.rb: Move to ...
* test/rexml/xpath/*.rb: ... here.
Sat Feb 22 20:04:41 2014 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/listener.rb: Untabify.

Просмотреть файл

@ -1,11 +1,7 @@
# rexml_xpath_attribute_query.rb
# May 16, 2007
#
require 'test/unit'
require 'rexml/document'
class TestRexmlXpathAttributeQuery < Test::Unit::TestCase
class TestXPathAttribute < Test::Unit::TestCase
# xmlstr1 and xmlstr2 only differ in the second line - namespaces in the root element
@@xmlstr1 = '<?xml version="1.0" encoding="UTF-8"?>

Просмотреть файл

@ -1,7 +1,7 @@
require "test/unit/testcase"
require "rexml/document"
class XPathAxesTester < Test::Unit::TestCase
class TestXPathAxisPredcedingSibling < Test::Unit::TestCase
include REXML
SOURCE = <<-EOF
<a id='1'>

Просмотреть файл

@ -1,8 +1,8 @@
require_relative "rexml_test_utils"
require_relative "../rexml_test_utils"
require "rexml/document"
class XPathTester < Test::Unit::TestCase
class TestXPathBase < Test::Unit::TestCase
include REXMLTestUtils
include REXML
SOURCE = <<-EOF

Просмотреть файл

@ -3,7 +3,7 @@ require "rexml/document"
require "rexml/xpath"
require "rexml/parsers/xpathparser"
class XPathPredicateTester < Test::Unit::TestCase
class TestXPathPredicate < Test::Unit::TestCase
include REXML
SRC=<<-EOL
<article>

Просмотреть файл

@ -3,7 +3,7 @@ require 'rexml/document'
require 'rexml/element'
require 'rexml/xpath'
class XpathTestCase < Test::Unit::TestCase
class TestXPathText < Test::Unit::TestCase
def setup
@doc = REXML::Document.new
end