unit tests for opml importer (#636)

This commit is contained in:
Athou
2014-11-07 09:00:53 +01:00
parent 7151db0909
commit 97c2cc3d15
5 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<opml>
<head>
<title>subscriptions</title>
</head>
<body>
<outline text="out1" title="out1">
<outline type="rss" text="feed1" title="feed1" xmlUrl="http://www.feed.com/feed1.xml" htmlUrl="http://www.feed.com" />
</outline>
</body>
</opml>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>subscriptions</title>
</head>
<body>
<outline text="out1" title="out1">
<outline type="rss" text="feed1" title="feed1" xmlUrl="http://www.feed.com/feed1.xml" htmlUrl="http://www.feed.com" />
</outline>
</body>
</opml>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.1">
<head>
<title>subscriptions</title>
</head>
<body>
<outline text="out1" title="out1">
<outline type="rss" text="feed1" title="feed1" xmlUrl="http://www.feed.com/feed1.xml" htmlUrl="http://www.feed.com" />
</outline>
</body>
</opml>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>subscriptions</title>
</head>
<body>
<outline text="out1" title="out1">
<outline type="rss" text="feed1" title="feed1" xmlUrl="http://www.feed.com/feed1.xml" htmlUrl="http://www.feed.com" />
</outline>
</body>
</opml>