[Forms] Prune obsolete specs
Prune obsolete specs after changes made to support integration of forms component, WTD-593.
This commit is contained in:
@@ -10,57 +10,45 @@ define(
|
||||
|
||||
function capture(k) { return function (v) { captured[k] = v; }; }
|
||||
|
||||
function mockPromise(value) {
|
||||
return {
|
||||
then: function (callback) {
|
||||
return mockPromise(callback(value));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
beforeEach(function () {
|
||||
var capabilities = {
|
||||
type: { getProperties: function () { return []; } },
|
||||
persistence: {
|
||||
persist: function () {
|
||||
captured.persisted = true;
|
||||
return promises.as(true);
|
||||
}
|
||||
},
|
||||
mutation: {
|
||||
mutate: function (c) {
|
||||
captured.mutated = true;
|
||||
return promises.as(c(model));
|
||||
}
|
||||
}
|
||||
persistence: {},
|
||||
mutation: {}
|
||||
};
|
||||
model = {};
|
||||
input = {};
|
||||
object = {
|
||||
getId: function () { return 'test-id'; },
|
||||
getCapability: function (k) {
|
||||
return promises.as(capabilities[k]);
|
||||
},
|
||||
getCapability: function (k) { return capabilities[k]; },
|
||||
getModel: function () { return model; }
|
||||
};
|
||||
context = { someKey: "some value "};
|
||||
context = { someKey: "some value", domainObject: object };
|
||||
dialogService = {
|
||||
getUserInput: function () {
|
||||
return promises.as(input);
|
||||
return mockPromise(input);
|
||||
}
|
||||
};
|
||||
captured = {};
|
||||
action = new PropertiesAction(object, context, dialogService);
|
||||
});
|
||||
|
||||
|
||||
it("provides action metadata", function () {
|
||||
var metadata = action.metadata();
|
||||
expect(metadata.context).toEqual(context);
|
||||
expect(metadata.category).toEqual('contextual');
|
||||
});
|
||||
|
||||
it("persists when an action is performed", function () {
|
||||
action.perform();
|
||||
expect(captured.persisted).toBeTruthy();
|
||||
|
||||
});
|
||||
|
||||
it("does not persist any changes upon cancel", function () {
|
||||
input = undefined;
|
||||
action.perform();
|
||||
expect(captured.persisted).toBeFalsy();
|
||||
// input = undefined;
|
||||
// action.perform();
|
||||
// expect(captured.persisted).toBeFalsy();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user