Skip to content

Instantly share code, notes, and snippets.

View varl's full-sized avatar

Viktor Varland varl

View GitHub Profile
var Indexer = require('./IndexPrinter.js');
module.exports = {
setUp: function (callback) {
text = "foo|bar\nbaz|bath";
this.indexer = new Indexer(text);
callback();
},
testContainsKey: function (test) {
test.ok(this.indexer.containsKey("foo"));