From c304fbadeb80425f300b8f13a47f703a83195d66 Mon Sep 17 00:00:00 2001 From: Roland Kuhn Date: Mon, 12 Aug 2013 12:56:18 +0200 Subject: [PATCH] =doc Move up dependency info for DurableMailboxSpec --- akka-docs/rst/scala/durable-mailbox.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/akka-docs/rst/scala/durable-mailbox.rst b/akka-docs/rst/scala/durable-mailbox.rst index 29758cde65..2b3517ee9b 100644 --- a/akka-docs/rst/scala/durable-mailbox.rst +++ b/akka-docs/rst/scala/durable-mailbox.rst @@ -83,17 +83,17 @@ mailboxes are an excellent fit for usage of circuit breakers. These are describ :include: custom-mailbox To facilitate testing of a durable mailbox you may use ``DurableMailboxSpec`` as base class. +To use ``DurableMailboxDocSpec`` add this dependency:: + + "com.typesafe.akka" %% "akka-mailboxes-common" % + "@version@" classifier "test" @crossString@ + It implements a few basic tests and helps you setup the a fixture. More tests can be added in concrete subclass like this: .. includecode:: code/docs/actor/mailbox/DurableMailboxDocSpec.scala :include: custom-mailbox-test -To use ``DurableMailboxDocSpec`` add this dependency:: - - "com.typesafe.akka" %% "akka-mailboxes-common" % - "@version@" classifier "test" @crossString@ - For more inspiration you can look at the old implementations based on Redis, MongoDB, Beanstalk, and ZooKeeper, which can be found in Akka git repository tag -`v2.0.1 `_. \ No newline at end of file +`v2.0.1 `_.