Project

General

Profile

Download (1.7 KB) Statistics
| Branch: | Tag: | Revision:
/**
* Copyright 2014 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public
* License as published by the Free Software Foundation; either version
* 2 of the License (GPLv2) or (at your option) any later version.
* There is NO WARRANTY for this software, express or implied,
* including the implied warranties of MERCHANTABILITY,
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
* have received a copy of GPLv2 along with this software; if not, see
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
**/

describe('Controller: ContentViewPublishController', function() {
var $scope;

beforeEach(module('Bastion.content-views', 'Bastion.test-mocks'))

beforeEach(inject(function($injector) {
var $controller = $injector.get('$controller'),
ContentView = $injector.get('MockResource').$new(),
gettext = $injector.get('gettextMock');

$scope = $injector.get('$rootScope').$new();

$scope.contentView = ContentView.get({id: 1});
$scope.contentView.$publish = function(version, callback) {
callback.call(this, $scope.contentView);
};

spyOn($scope, 'transitionTo');

$controller('ContentViewPublishController', {
$scope: $scope,
gettext: gettext
});
}));

it("puts an empty version on the scope", function() {
expect($scope.version).toBeDefined();
});

it('provides a method to publish a content view version', function() {
$scope.publish($scope.contentView, $scope.version);

expect($scope.transitionTo).toHaveBeenCalledWith('content-views.details.versions', {contentViewId: $scope.contentView.id});
});

});
(3-3/6)