Lines Matching refs:stored

163     it("should compare when stored value is different to current value", function () {
175 it("should compare when stored value is not null and current value is null", function () {
187 it("should compare when stored value is null and current value is not null", function () {
237 it("should compare screens when stored screen width is null", function() {
249 it("should compare screens when stored screen width is different to current screen width", function() {
261 it("should compare screens when stored screen height is null", function() {
273 it("should compare screens when stored screen height is different to current screen height", function() {
285 it("should compare screens when stored screen colour depth is null", function() {
297 it("should compare screens when stored screen colour depth is different to current screen colour depth", function() {
312 it("should compare multi value strings when stored value is null and current value is empty", function() {
364 it("should compare multi value strings when stored value is null", function() {
495 it("should compare user agents when stored value is null", function () {
515 var stored = null;
518 var comparisonResult = GeolocationComparator.compare(current, stored, config);
526 var stored = {"latitude": null, "longitude": 2.0};
529 var comparisonResult = GeolocationComparator.compare(current, stored, config);
537 var stored = {"latitude": 2.0, "longitude": null};
540 var comparisonResult = GeolocationComparator.compare(current, stored, config);
548 var stored = {"latitude": 2.0, "longitude": 2.0};
551 var comparisonResult = GeolocationComparator.compare(current, stored, config);
561 var stored = {"latitude": 2.0, "longitude": 2.0};
564 var comparisonResult = GeolocationComparator.compare(current, stored, config);
574 var stored = {"latitude": 2.0, "longitude": 2.0};
577 var comparisonResult = GeolocationComparator.compare(current, stored, config);
584 it("should compare location when stored location is null", function () {
587 var stored = null;
590 var comparisonResult = GeolocationComparator.compare(current, stored, config);
597 it("should compare location when stored latitude is null", function () {
600 var stored = {"latitude": null, "longitude": 2.0};
603 var comparisonResult = GeolocationComparator.compare(current, stored, config);
610 it("should compare location when stored longitude is null", function () {
613 var stored = {"latitude": 2.0, "longitude": null};
616 var comparisonResult = GeolocationComparator.compare(current, stored, config);
626 var stored = {"latitude": 2.0, "longitude": 2.0};
629 var comparisonResult = GeolocationComparator.compare(current, stored, config);
638 var stored = {"latitude": 2.0, "longitude": 2.0};
641 var comparisonResult = GeolocationComparator.compare(current, stored, config);
650 var stored = {"latitude": 2.0, "longitude": 2.0};
653 var comparisonResult = GeolocationComparator.compare(current, stored, config);