features/error_handling.feature in message-driver-0.2.2 vs features/error_handling.feature in message-driver-0.3.0
- old
+ new
@@ -1,14 +1,12 @@
Feature: Error Handling
- Background:
- Given I am connected to the broker
-
@bunny
Scenario: Queue isn't found on the broker
+ Given I am connected to the broker
When I execute the following code
"""ruby
- MessageDriver::Broker.dynamic_destination("missing_queue", passive: true)
+ MessageDriver::Client.dynamic_destination("missing_queue", passive: true)
"""
Then I expect it to raise a MessageDriver::QueueNotFound error
@no_ci