From 6afd0fd9deaf485f6fce78783ac92a38e8869a13 Mon Sep 17 00:00:00 2001
From: Julian Lam <julian@designcreateplay.com>
Date: Sun, 6 Apr 2014 15:04:05 -0400
Subject: [PATCH] added two failing tests for #1331

---
 tests/groups.js | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/tests/groups.js b/tests/groups.js
index c8dd1e6948..deb3b38256 100644
--- a/tests/groups.js
+++ b/tests/groups.js
@@ -71,6 +71,15 @@ describe('Groups', function() {
 				done();
 			});
 		});
+
+		it('should auto-generate a slug given the group name', function(done) {
+			Groups.get('Test', {}, function(err, groupObj) {
+				if (err) return done(err);
+
+				assert.strictEqual('test', groupObj.slug);
+				done();
+			});
+		});
 	});
 
 	describe('.search()', function() {
@@ -158,6 +167,14 @@ describe('Groups', function() {
 				done();
 			});
 		});
+
+		it('should also check slugified name for existence', function(done) {
+			Groups.exists('Test();', function(err, exists) {
+				if (err) return done(err);
+
+				assert.strictEqual(exists, true);
+			});
+		});
 	});
 
 	describe('.create()', function() {