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 6a20060 commit c3668ceCopy full SHA for c3668ce
1 file changed
Changelog
@@ -1,6 +1,30 @@
1
Changes
2
=======
3
4
+.. _version-1.4.0:
5
+
6
+1.4.0
7
+=====
8
+:release-date: 2016-10-17 06:14 p.m. PDT
9
+:release-by: Ask Solem
10
11
+- Adds new helper: ``case.pytest.fixture_with_options``.
12
13
+ Example:
14
15
+ .. code-block:: python
16
17
+ @fixture_with_options()
18
+ def sftp(request,
19
+ username='test_username',
20
+ password='test_password'):
21
+ return {'username': username, 'password': password}
22
23
+ @sftp.options(username='foo', password='bar')
24
+ def test_foo(sftp):
25
+ assert sftp['username'] == 'foo'
26
+ assert sftp['password'] == 'bar'
27
28
.. _version-1.3.1:
29
30
1.3.1
0 commit comments