forked from pool/python-restview
- Add fix-tests.patch gh#mgedmin/restview@5033eacb1d55
- Remove python_module macro definition - More specific python_sitelib in %files - Use autosetup instead of setup + autopatch OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-restview?expand=0&rev=13
This commit is contained in:
90
fix-tests.patch
Normal file
90
fix-tests.patch
Normal file
@@ -0,0 +1,90 @@
|
||||
diff --git a/src/restview/tests.py b/src/restview/tests.py
|
||||
index 71aeb77..c840cb8 100644
|
||||
--- a/src/restview/tests.py
|
||||
+++ b/src/restview/tests.py
|
||||
@@ -541,10 +541,9 @@ def doctest_RestViewer_rest_to_html():
|
||||
... ''', settings={'cloak_email_addresses': True}).strip())
|
||||
... # doctest: +ELLIPSIS,+REPORT_NDIFF
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
+ <!DOCTYPE html...>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
...
|
||||
<title>example</title>
|
||||
<style type="text/css">
|
||||
@@ -556,7 +555,7 @@ def doctest_RestViewer_rest_to_html():
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
- <div class="document" id="example">
|
||||
+ <main id="example">
|
||||
<h1 class="title">example</h1>
|
||||
<BLANKLINE>
|
||||
<p>This is a doctest:</p>
|
||||
@@ -570,11 +569,9 @@ def doctest_RestViewer_rest_to_html():
|
||||
<p>This is a reference: <a class="reference external" href="http://example.com/README.rst">README.rst</a></p>
|
||||
<p>This is an email: <a class="reference external" href="mailto:marius%40gedmin.as">marius<span>@</span>gedmin<span>.</span>as</a></p>
|
||||
<p>This is a literal block:</p>
|
||||
- <pre class="literal-block">
|
||||
- See <a href="CHANGES.rst">CHANGES.rst</a>, mkay?
|
||||
- </pre>
|
||||
+ <pre class="literal-block">See <a href="CHANGES.rst">CHANGES.rst</a>, mkay?</pre>
|
||||
<p>This is an inline literal: <tt class="docutils literal"><a href="README.txt">README.txt</a></tt>.</p>
|
||||
- </div>
|
||||
+ </main>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -594,10 +591,7 @@ def doctest_RestViewer_rest_to_html_css_url():
|
||||
... ''').strip())
|
||||
... # doctest: +ELLIPSIS,+REPORT_NDIFF
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
- <head>
|
||||
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
+ <!DOCTYPE html...>
|
||||
...
|
||||
<title>...</title>
|
||||
<link rel="stylesheet" href="http://example.com/my.css" type="text/css" />
|
||||
@@ -606,11 +600,11 @@ def doctest_RestViewer_rest_to_html_css_url():
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
- <div class="document">
|
||||
+ <main>
|
||||
<BLANKLINE>
|
||||
<BLANKLINE>
|
||||
<p>Some text</p>
|
||||
- </div>
|
||||
+ </main>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -729,21 +723,18 @@ def doctest_RestViewer_rest_to_html_pypi_strict():
|
||||
... ''').strip().replace(""", '"'))
|
||||
... # doctest: +ELLIPSIS,+REPORT_NDIFF
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
- <head>
|
||||
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
+ <!DOCTYPE html...>
|
||||
...
|
||||
<title>Hello</title>
|
||||
<style type="text/css">
|
||||
...
|
||||
</head>
|
||||
<body>
|
||||
- <div class="document" id="hello">
|
||||
+ <main id="hello">
|
||||
<h1 class="title">Hello</h1>
|
||||
<BLANKLINE>
|
||||
<p><a href="http://www.example.com" rel="nofollow">This is fine</a>.</p>
|
||||
- </div>
|
||||
+ </main>
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user