Skip to content

Commit 711c421

Browse files
committed
Updated testing specs for createAnagrams
1 parent 1f9008b commit 711c421

File tree

1 file changed

+11
-29
lines changed

1 file changed

+11
-29
lines changed

createAnagrams/createAnagrams.test.js

+11-29
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ describe('createAnagrams', function() {
1616

1717
it('should return an array', function() {
1818
var result = createAnagrams('hello');
19-
console.log('result', result);
2019
should.exist(result);
2120
result.should.be.an.instanceof(Array);
2221
});
@@ -26,16 +25,16 @@ describe('createAnagrams', function() {
2625
result.should.be.eql(['a']);
2726
});
2827

29-
it('should return an array of anagrams that contains `lives` for input `elvis`', function(){
30-
var result = createAnagrams('elvis');
31-
var found = result.indexOf('lives') !== -1;
28+
it('should return an array of anagrams that contains `nat` for input `ant`', function(){
29+
var result = createAnagrams('ant');
30+
var found = result.indexOf('nat') !== -1;
3231
found.should.be.true;
3332
});
3433

35-
it('should return an array of anagrams that contains `badcredit` for input `debitcard`', function(){
36-
var result = createAnagrams('debitcard');
37-
var found = result.indexOf('badcredit') !== -1;
38-
found.should.be.true;
34+
it('should return a single entry in array if input is same characters', function() {
35+
var expected = ['aaa'];
36+
var result = createAnagrams('aaa');
37+
result.length.should.be.equal(expected.length);
3938
});
4039

4140
it('should return all anagrams for \'ab\'', function(){
@@ -49,10 +48,9 @@ describe('createAnagrams', function() {
4948
}
5049
});
5150

52-
it('should return all anagrams for \'abc\'', function(){
53-
var expected = ['abc', 'acb', 'bac', 'bca', 'cab', 'cba'];
54-
var result = createAnagrams('abc');
55-
result.sort().should.be.eql(expected);
51+
it('should return all anagrams for \'jtb\'', function(){
52+
var expected = ['jtb', 'jbt', 'tjb', 'tbj', 'bjt', 'btj'];
53+
var result = createAnagrams('jtb');
5654
var item, found = false;
5755
for(var i = 0; i < expected.length; i++){
5856
item = expected[i];
@@ -61,28 +59,12 @@ describe('createAnagrams', function() {
6159
}
6260
});
6361

64-
it('should return all anagrams for \'apps\'', function() {
65-
var expected = [ 'apps', 'apsp', 'aspp', 'paps', 'pasp', 'ppas'
66-
, 'ppsa', 'psap', 'pspa', 'sapp', 'spap', 'sppa' ];
67-
var result = createAnagrams('apps');
68-
var item, index, found = false;
69-
for(var i = 0; i < expected.length; i++){
70-
item = expected[i];
71-
found = result.indexOf(item) !== -1;
72-
found.should.be.true;
73-
}
74-
});
75-
76-
it('should return all __unique__ anagrams for \'apps\'', function() {
62+
it('should return only unique anagrams for \'apps\'', function() {
7763
var expected = [ 'apps', 'apsp', 'aspp', 'paps', 'pasp', 'ppas', 'ppsa'
7864
, 'psap', 'pspa', 'sapp', 'spap', 'sppa' ];
7965
var match = true;
8066
var result = createAnagrams('apps');
8167
result.length.should.be.equal(expected.length);
8268
});
8369

84-
it('should not use underscore\'s `uniq`', function(){
85-
var usesUniq = createAnagrams.toString().match(/\s*_\.uniq/) === null;
86-
usesUniq.should.be.true;
87-
})
8870
});

0 commit comments

Comments
 (0)