We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f05c870 commit e40ca4fCopy full SHA for e40ca4f
tests/test_request.py
@@ -50,3 +50,11 @@ def _buildresponse(body, **kwargs):
50
assert 'clickable1' not in fs
51
assert fs['one'] == ['1']
52
assert fs['two'] == ['2']
53
+
54
55
+def test_splash_request_meta():
56
+ meta = {'foo': 'bar'}
57
+ req = SplashRequest('http://example.com', meta=meta)
58
+ assert 'splash' in req.meta
59
+ assert req.meta['foo'] == 'bar'
60
+ assert meta == {'foo': 'bar'}
0 commit comments