From baff1de1d86a852c7377eaa6bf9c7fed95cd1544 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sun, 23 Oct 2022 22:37:41 -0600 Subject: [PATCH] Update changelog Implemented https://github.com/icy-arctic-fox/spectator/issues/46 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7141cc7..3a5526d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- Add support for using named (keyword) arguments in place of positional arguments in stubs. [#47](https://github.com/icy-arctic-fox/spectator/issues/47) + ### Fixed - Clear stubs defined with `expect().to receive()` syntax after test finishes to prevent leakage between tests. - Ensure stubs defined with `allow().to receive()` syntax are cleared after test finishes when used inside a test (another leakage).