Skip to content

Commit c3668ce

Browse files
committed
Updates Changelog
1 parent 6a20060 commit c3668ce

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Changelog

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
Changes
22
=======
33

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+
428
.. _version-1.3.1:
529

630
1.3.1

0 commit comments

Comments
 (0)