Fixed mispelling: comparitor -> comparator.
authorPeter Haight <peterh@giantrabbit.com>
Tue, 30 Dec 2014 23:09:41 +0000 (15:09 -0800)
committerPeter Haight <peterh@giantrabbit.com>
Tue, 30 Dec 2014 23:09:41 +0000 (15:09 -0800)
It's nicer to have things spelled correctly.

tests/karma/lib/crmJsonComparator.js [moved from tests/karma/lib/crmJsonComparitor.js with 91% similarity]
tests/karma/unit/crmCaseTypeSpec.js
tests/karma/unit/crmJsonComparator.js [moved from tests/karma/unit/crmJsonComparitor.js with 69% similarity]

similarity index 91%
rename from tests/karma/lib/crmJsonComparitor.js
rename to tests/karma/lib/crmJsonComparator.js
index 44a3207037f9f3204b512dac651baf8bb9869e73..070ada2eecd616a45c63d5284ef7a3e72318a9cf 100644 (file)
@@ -1,8 +1,8 @@
 'use strict';
 
 (function(root) {
-  var Comparitor = function() {};
-  Comparitor.prototype = {
+  var Comparator = function() {};
+  Comparator.prototype = {
     compare: function(actual, expected) {
       this.result = {
         'pass': true,
       return false;
     },
     register: function(jasmine) {
-      var comparitor = this;
+      var comparator = this;
       jasmine.addMatchers({
         toEqualData: function(expected) {
           return {
-            compare: $.proxy(comparitor.compare, comparitor)
+            compare: $.proxy(comparator.compare, comparator)
           }
         }
       });
     }
   };
-  var module = angular.module('crmJsonComparitor', []);
-  module.service('crmJsonComparitor', Comparitor);
+  var module = angular.module('crmJsonComparator', []);
+  module.service('crmJsonComparator', Comparator);
 })(angular);
index ff826a47793695bc6cbec2db973d6fadf59d4a52..260a6e0dbb3e0ea6b8515afe582b768f3ba2a374 100644 (file)
@@ -10,9 +10,9 @@ describe('crmCaseType', function() {
       'REL_TYPE_CNAME': 'label_b_a'
     };
     module('crmCaseType');
-    module('crmJsonComparitor');
-    inject(function(crmJsonComparitor) {
-      crmJsonComparitor.register(jasmine);
+    module('crmJsonComparator');
+    inject(function(crmJsonComparator) {
+      crmJsonComparator.register(jasmine);
     });
   });
 
similarity index 69%
rename from tests/karma/unit/crmJsonComparitor.js
rename to tests/karma/unit/crmJsonComparator.js
index 653a34b65a98401d43a06e917e985585b004c3aa..8380ba7951a663d0e65f75efa6cb6cc00f8d3003 100644 (file)
@@ -1,74 +1,74 @@
 'use strict';
 
-describe('crmJsonComparitor', function() {
-  var comparitor;
+describe('crmJsonComparator', function() {
+  var comparator;
 
   beforeEach(function() {
-    module('crmJsonComparitor');
+    module('crmJsonComparator');
   });
 
   beforeEach(function() {
-    inject(function(crmJsonComparitor) {  
-      comparitor = crmJsonComparitor;
+    inject(function(crmJsonComparator) {
+      comparator = crmJsonComparator;
     }); 
   });
 
   it('should return false when comparing different objects', function() {
-    var result = comparitor.compare({'foo': 'bar'}, {'bar': 'foo'});
+    var result = comparator.compare({'foo': 'bar'}, {'bar': 'foo'});
     expect(result.pass).toBe(false);
   });
 
   it('should return true when comparing equal objects', function() {
-    var result = comparitor.compare({'bar': 'foo'}, {'bar': 'foo'});
+    var result = comparator.compare({'bar': 'foo'}, {'bar': 'foo'});
     expect(result.pass).toBe(true);
   });
 
   it('should explain what part of the comparison failed when comparing objects', function() { 
-    var result = comparitor.compare({'foo': 'bar'}, {'bar': 'foo'});
+    var result = comparator.compare({'foo': 'bar'}, {'bar': 'foo'});
     expect(result.message).toBe('Could not find key \'bar\' in actual data at root.');
   });
 
   it('should handle nested objects', function() {
-     var result = comparitor.compare({'foo': {'bif': 'bam'}}, {'foo': {'bif': 'bam'}});
+     var result = comparator.compare({'foo': {'bif': 'bam'}}, {'foo': {'bif': 'bam'}});
     expect(result.pass).toBe(true);
   });
 
   it('should handle differences in nested objects', function() {
-     var result = comparitor.compare({'foo': {'bif': 'bam'}}, {'foo': {'bif': 'bop'}});
+     var result = comparator.compare({'foo': {'bif': 'bam'}}, {'foo': {'bif': 'bop'}});
     expect(result.pass).toBe(false);
     expect(result.message).toBe("Expected 'bam' to be 'bop' at root[foo][bif].");
   });
 
   it('should handle arrays', function() {
-    var result = comparitor.compare([1, 2, 3, 4], [1, 2, 3, 4]);
+    var result = comparator.compare([1, 2, 3, 4], [1, 2, 3, 4]);
     expect(result.pass).toBe(true);
   });
 
   it('should handle arrays with differences', function() {
-    var result = comparitor.compare([1, 2, 2, 4], [1, 2, 3, 4]);
+    var result = comparator.compare([1, 2, 2, 4], [1, 2, 3, 4]);
     expect(result.pass).toBe(false);
     expect(result.message).toBe("Expected '2' to be '3' at root[2].");
   });
 
   it('should handle nested arrays and objects', function() {
-    var result = comparitor.compare([1, 2, {'foo': 'bar'}, 4], [1, 2, {'foo': 'bar'}, 4]);
+    var result = comparator.compare([1, 2, {'foo': 'bar'}, 4], [1, 2, {'foo': 'bar'}, 4]);
     expect(result.pass).toBe(true);
   });
 
   it('should handle nested arrays and objects with differences', function() {
-    var result = comparitor.compare([1, 2, {'foo': 'bar'}, 4], [1, 2, {'foo': 'bif'}, 4]);
+    var result = comparator.compare([1, 2, {'foo': 'bar'}, 4], [1, 2, {'foo': 'bif'}, 4]);
     expect(result.pass).toBe(false);
     expect(result.message).toBe("Expected 'bar' to be 'bif' at root[2][foo].");
   });
 
   it('should complain when comparing an object to an array', function() {
-    var result = comparitor.compare({'foo': 'bar'}, [1, 2, 3]);
+    var result = comparator.compare({'foo': 'bar'}, [1, 2, 3]);
     expect(result.pass).toBe(false);
     expect(result.message).toBe("The expected data has an array at root, but the actual data has something else ([object Object])");
   });
 
   it('should complain when comparing an array to an object', function() {
-    var result = comparitor.compare([1, 2, 3], {'foo': 'bar'});
+    var result = comparator.compare([1, 2, 3], {'foo': 'bar'});
     expect(result.pass).toBe(false);
     expect(result.message).toBe("The expected data has an object at root, but the actual data has something else (1,2,3)");
   });