blob: 337728794bb9bbfa14dbd5581f0f55922f6efeb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Disable test that requires a network connection.
--- a/tests/test_pyquery.py
+++ b/tests/test_pyquery.py
@@ -613,10 +613,10 @@
self.s.shutdown()
-class TestWebScrappingEncoding(TestCase):
-
- def test_get(self):
- d = pq(u'http://ru.wikipedia.org/wiki/Заглавная_страница',
- method='get')
- print(d)
- self.assertEqual(d('#pt-login').text(), u'Войти')
+#class TestWebScrappingEncoding(TestCase):
+#
+# def test_get(self):
+# d = pq(u'http://ru.wikipedia.org/wiki/Заглавная_страница',
+# method='get')
+# print(d)
+# self.assertEqual(d('#pt-login').text(), u'Войти')
|