From 539a0c98dfae8c97782f17becd2d0646d1341376 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Fri, 20 Sep 2013 10:25:16 -0500 Subject: [PATCH] Removed RouteController unit Not sure we even eed the route controller right now. --- hacking/RouteController.unit.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 hacking/RouteController.unit.js diff --git a/hacking/RouteController.unit.js b/hacking/RouteController.unit.js deleted file mode 100644 index cd687809e0..0000000000 --- a/hacking/RouteController.unit.js +++ /dev/null @@ -1,14 +0,0 @@ -describe('RouteController', function() { - - beforeEach(function() { - }); - - it('Should init', function() { - var rc = new RouteViewController({ - root: 'hacking/route.html'; - }); - rc.when('/', function() { - console.log('Loaded'); - }); - }); -});