fix(ngScenario): fix error message description

This commit is contained in:
Pete Bacon Darwin 2013-09-25 09:46:32 +01:00
parent 6c59e77008
commit f8f8f754b0

View file

@ -74,16 +74,17 @@ angular.scenario.dsl = angular.scenario.dsl || function(name, fn) {
*/
angular.scenario.matcher = angular.scenario.matcher || function(name, fn) {
angular.scenario.matcher[name] = function(expected) {
var prefix = 'expect ' + this.future.name + ' ',
not = this.inverse && 'not ';
var description = this.future.name +
(this.inverse ? ' not ' : ' ') + name +
' ' + angular.toJson(expected);
var self = this;
this.addFuture(prefix + not + name + ' ' + angular.toJson(expected),
this.addFuture('expect ' + description,
function(done) {
var error;
self.actual = self.future.value;
if ((self.inverse && fn.call(self, expected)) ||
(!self.inverse && !fn.call(self, expected))) {
error = 'expected ' + not + name + ' ' + angular.toJson(expected) +
error = 'expected ' + description +
' but was ' + angular.toJson(self.actual);
}
done(error);