summaryrefslogtreecommitdiffstats
path: root/test/page.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/page.js')
-rw-r--r--test/page.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/page.js b/test/page.js
index 831d8b1..082cda6 100644
--- a/test/page.js
+++ b/test/page.js
@@ -21,7 +21,14 @@ describe('Page parsing', function() {
it('should gen content for normal sections', function() {
assert(LEXED[0].content);
- assert(!LEXED[1].content);
assert(LEXED[2].content);
});
+
+ it('should gen code and content for exercise sections', function() {
+ assert(LEXED[1].content);
+ assert(LEXED[1].code);
+ assert(LEXED[1].code.base);
+ assert(LEXED[1].code.solution);
+ assert(LEXED[1].code.validation);
+ });
});