-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Diego Zambelli Sessona
committed
Aug 21, 2014
1 parent
665b72e
commit 6f97806
Showing
7 changed files
with
17 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Mandrill { | ||
key="oD1lKbj5hPxpXPpMkkdKtw", | ||
timoutInSeconds=5 | ||
timoutInSeconds=10 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,14 +150,14 @@ class MessageCallsTest extends FlatSpec with Matchers with SimpleLogger { | |
checkFailedBecauseOfInvalidKey(MandrillBlockingClient.messagesSearch(validSearch.copy(key = "invalid"))) | ||
} | ||
|
||
"MessageInfo" should "work getting a valid MMessageInfoResponse (async client)" in { | ||
"MessageInfo" should "work getting a valid MMessageInfoResponse (async client)" ignore { | ||
val res = Await.result(MandrillAsyncClient.messagesInfo(MMessageInfo(id = idOfMailForInfoTest)), DefaultConfig.defaultTimeout) | ||
res.getClass shouldBe classOf[MMessageInfoResponse] | ||
res._id shouldBe idOfMailForInfoTest | ||
res.subject shouldBe "subject test" | ||
res.email shouldBe "[email protected]" | ||
} | ||
it should "work getting a valid MMessageInfoResponse (blocking client)" in { | ||
ignore should "work getting a valid MMessageInfoResponse (blocking client)" in { | ||
MandrillBlockingClient.messagesInfo(MMessageInfo(id = idOfMailForInfoTest)) match { | ||
case Success(res) => | ||
res.getClass shouldBe classOf[MMessageInfoResponse] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version in ThisBuild := "1.0.0" | ||
version in ThisBuild := "1.1.0" |