From 22ea8c689d7568c09fd1d7a60066ba57e27ff65d Mon Sep 17 00:00:00 2001
From: Lucas Gabriel Lima <lgl15@inf.ufpr.br>
Date: Fri, 8 Jul 2016 11:30:04 -0300
Subject: [PATCH] add 'expect' and 'should' modules

---
 test/test.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/test/test.js b/test/test.js
index 0cffd797..f05951f4 100644
--- a/test/test.js
+++ b/test/test.js
@@ -1,5 +1,9 @@
 var assert = require('chai').assert;
+var expect = require('chai').expect;
+var should = require('chai').should() //actually call the function
 
-it('doesn\'t do anything', function(){
+var foo = 'bar';
 
+it('doesn\'t do anything', function(){
+  assert.typeOf(foo, 'string', 'foo is a string');
 });
-- 
GitLab