-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tennu 0.8.2: Response Object + disable-help + sjs tests + fez
Fez and SJS tests are not working right now. You can compile the SJS tests manually via: ``` sjs -m sweet-bdd -o test/filename.js test-src/filename.js ``` But only one test at a time. Once I finish fez-sweet.js, you'll be able to `node fez.js` or `npm build`. The tests are just the first place macros are being used. I'll use them in actual production code once I've got the build step working correctly. Anyways, this 0.8.2 release, what features does it have? 1. !help goes to query always. 2. You can disable the help module. 3. Responses can now be objects with {message, query, intent}. But what about fixed bugs? Well, I haven't noticed any bugs to fix.
- Loading branch information
Showing
17 changed files
with
350 additions
and
335 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
var fez = require('fez'); | ||
var sweetjs = require('fez-sweet.js'); | ||
|
||
exports.build = function(rule) { | ||
rule.each("test-src/*.sjs", fez.mapFile("test/%f.js"), sweetjs({'modules': ['sweet-bdd']})); | ||
}; | ||
|
||
exports.default = exports.build; | ||
|
||
fez(module); |
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
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
File renamed without changes.
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
Oops, something went wrong.