From a50cd62bc8d25ed706d4234ddf12568286816adc Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Sun, 21 Jun 2015 13:13:25 -0400 Subject: [PATCH] Updated Test Driven Development (markdown) --- Test-Driven-Development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test-Driven-Development.md b/Test-Driven-Development.md index a8b35f6..d69facf 100644 --- a/Test-Driven-Development.md +++ b/Test-Driven-Development.md @@ -9,7 +9,7 @@ Afterwards you can initialize a contract and pass arguments to its contractor: ```SimpleStorage = EmbarkSpec.request("SimpleStorage", [150]);``` -You can then interact with the contract normally. e.g ```SimpleStorage.set(100)``` +Embark will look for the contract at ```app/contracts/*```, compile it and run it in a VM. You can then interact with the contract normally. e.g ```SimpleStorage.set(100)``` An caveat at the moment is that the return values are represented as strings. So ```SimpleStorage.get()``` will return ```"100"```