summaryrefslogtreecommitdiffstats
path: root/lib/models/__tests__/glossaryEntry.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/models/__tests__/glossaryEntry.js')
-rw-r--r--lib/models/__tests__/glossaryEntry.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/models/__tests__/glossaryEntry.js b/lib/models/__tests__/glossaryEntry.js
deleted file mode 100644
index 833115d..0000000
--- a/lib/models/__tests__/glossaryEntry.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var GlossaryEntry = require('../glossaryEntry');
-
-describe('GlossaryEntry', function() {
- describe('getID', function() {
- it('must return a normalized ID', function() {
- var entry = new GlossaryEntry({
- name: 'Hello World'
- });
-
- expect(entry.getID()).toBe('hello-world');
- });
- });
-});
-
-