2018-05-25 08:03:45 +00:00
|
|
|
import './index.js';
|
2018-02-21 12:10:23 +00:00
|
|
|
|
|
|
|
describe('ItemBotanical', () => {
|
|
|
|
describe('Component vnItemBotanical', () => {
|
|
|
|
let $httpBackend;
|
|
|
|
let $state;
|
|
|
|
let controller;
|
|
|
|
|
2018-12-22 10:59:26 +00:00
|
|
|
beforeEach(ngModule('item'));
|
2018-02-21 12:10:23 +00:00
|
|
|
|
2018-12-22 10:59:26 +00:00
|
|
|
beforeEach(angular.mock.inject(($componentController, _$state_, _$httpBackend_) => {
|
2018-02-21 12:10:23 +00:00
|
|
|
$httpBackend = _$httpBackend_;
|
|
|
|
$state = {
|
|
|
|
params: {
|
|
|
|
id: 123
|
|
|
|
}
|
|
|
|
};
|
2018-12-22 10:59:26 +00:00
|
|
|
controller = $componentController('vnItemBotanical', {$state});
|
2018-02-21 12:10:23 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
describe('_getBotanical()', () => {
|
|
|
|
it('should request to patch the propagation of botanical status', () => {
|
|
|
|
$httpBackend.whenGET('/item/api/ItemBotanicals?filter={"where":{"itemFk":123},"include":[{"relation":"genus"},{"relation":"specie"}]}').respond({data: 'item'});
|
|
|
|
$httpBackend.expectGET('/item/api/ItemBotanicals?filter={"where":{"itemFk":123},"include":[{"relation":"genus"},{"relation":"specie"}]}');
|
|
|
|
controller.$onInit();
|
|
|
|
$httpBackend.flush();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|