Sha256: f7d568b7243780760d0a5e4a2a33813de3f3b20490b3db8d3c1c50f3f62d7105
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
# class OpmlTest # # Copyright (C) 2013-2014 Masafumi Yokoyama <myokoym@gmail.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA require "feedcellar/opml" class OpmlTest < Test::Unit::TestCase def setup end def test_parse file = File.join(File.dirname(__FILE__), "fixtures", "subscriptions.xml") outlines = Feedcellar::Opml.parse(file) # TODO: Support tag assert_equal(1, outlines.size) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
feedcellar-0.7.2 | test/test-opml.rb |
feedcellar-0.7.1 | test/test-opml.rb |
feedcellar-0.7.0 | test/test-opml.rb |