You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
angularjs-batarang/test/TreeCtrlSpec.js

52 lines
1.3 KiB
JavaScript

describe('panelApp:ModelCtrl', function () {
beforeEach(module('panelApp'));
beforeEach(module(function($provide) {
$provide.factory('appContext', createAppContextMock);
$provide.factory('chromeExtension', createChromeExtensionMock);
}));
describe('ModelCtrl', function() {
var ctrl,
$scope,
appContext,
chromeExtension;
beforeEach(inject(function(_$rootScope_, _appContext_, _chromeExtension_, $controller) {
$scope = _$rootScope_;
// mock accessor
$scope.val = {
id: "ZZZ"
};
//inspect.reset();
appContext = _appContext_;
chromeExtension = _chromeExtension_;
ctrl = $controller('ModelCtrl', {$scope: $scope});
}));
it('should call inspect when there is an element to inspect', function () {
$scope.inspect();
expect(appContext.inspect).toHaveBeenCalledWith('ZZZ');
});
it('should change the corresponding value in the scope when edit is called', function () {
// mock accessor
$scope.val = {
id: $scope.$id
};
// feel like this might be cheating
appContext.registerScope($scope);
$scope.key = 'someKey';
$scope.someKey = 'someOldValue';
$scope.item = '"someNewValue"';
$scope.edit();
expect($scope.someKey).toBe('someNewValue');
});
});
});