You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- OpenapiFirst::Test now raises an error for unknown requests. You can deactivate with:
```ruby
OpenapiFirst::Test.setup do |test|
# ...
test.ignore_unknown_request = true
end
```
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,18 @@
2
2
3
3
## Unreleased
4
4
5
-
- OpenapiFirst::Test now raises an error for unknown requests. You can deactivate this by setting `OpenapiFirst::Test::Configuration#ignore_unknown_request = true`.
5
+
## 2.9.0
6
+
7
+
- OpenapiFirst::Test now raises an error for unknown requests. You can deactivate with:
8
+
9
+
```ruby
10
+
OpenapiFirst::Test.setup do |test|
11
+
# ...
12
+
test.ignore_unknown_request =true
13
+
end
14
+
```
15
+
16
+
- NotFoundError#message now includes the requested path
0 commit comments