mirror of
https://github.com/opencultureconsulting/openrefine-client.git
synced 2025-03-30 00:00:46 +01:00
Tidy grammar & test for no filtering.
This commit is contained in:
parent
df2661448a
commit
0ba7c56ac3
@ -1,11 +1,11 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
"""
|
"""
|
||||||
test_refine.py
|
test_tutorial.py
|
||||||
|
|
||||||
The tests here are based on David Huynh's Refine tutorial at
|
The tests here are based on David Huynh's Refine tutorial at
|
||||||
http://davidhuynh.net/spaces/nicar2011/tutorial.pdf The tests perform all
|
http://davidhuynh.net/spaces/nicar2011/tutorial.pdf The tests perform all
|
||||||
the Refine actions given in the tutorial (except the web scraping) and verify
|
the Refine actions given in the tutorial (except the web scraping) and verify
|
||||||
the changes expected to observe explained in the tutorial.
|
the changes expected to be observed explained in the tutorial.
|
||||||
|
|
||||||
These tests require a connection to a Refine server either at
|
These tests require a connection to a Refine server either at
|
||||||
http://127.0.0.1:3333/ or by specifying environment variables REFINE_HOST
|
http://127.0.0.1:3333/ or by specifying environment variables REFINE_HOST
|
||||||
@ -30,6 +30,7 @@ class TutorialTestFacets(refinetest.RefineTestCase):
|
|||||||
self.assertEqual(len(response.rows), 10)
|
self.assertEqual(len(response.rows), 10)
|
||||||
self.assertEqual(response.limit, 10)
|
self.assertEqual(response.limit, 10)
|
||||||
self.assertEqual(response.total, 6958)
|
self.assertEqual(response.total, 6958)
|
||||||
|
self.assertEqual(response.filtered, 6958)
|
||||||
for row in response.rows:
|
for row in response.rows:
|
||||||
self.assertFalse(row.flagged)
|
self.assertFalse(row.flagged)
|
||||||
self.assertFalse(row.starred)
|
self.assertFalse(row.starred)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user