Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-01-08 11:17:07 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-01-15 13:00:31 +0300
commitad1aec3085aa4d9da6470a89bc73b8406894afa9 (patch)
tree6ec8f19222c14da471d95549f002f4f439167202 /apps/systemtags/tests
parent8a5632d3a13bd84cda3c5bd499020e962e549f50 (diff)
Only show tag selector if tags are set
Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/systemtags/tests')
-rw-r--r--apps/systemtags/tests/js/systemtagsinfoviewtoggleviewSpec.js93
1 files changed, 0 insertions, 93 deletions
diff --git a/apps/systemtags/tests/js/systemtagsinfoviewtoggleviewSpec.js b/apps/systemtags/tests/js/systemtagsinfoviewtoggleviewSpec.js
deleted file mode 100644
index 5e6c2c820e9..00000000000
--- a/apps/systemtags/tests/js/systemtagsinfoviewtoggleviewSpec.js
+++ /dev/null
@@ -1,93 +0,0 @@
-/**
- *
- * @copyright Copyright (c) 2017, Daniel Calviño Sánchez (danxuliu@gmail.com)
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-describe('OCA.SystemTags.SystemTagsInfoViewToggleView', function () {
-
- var systemTagsInfoView;
- var view;
-
- beforeEach(function() {
- systemTagsInfoView = new OCA.SystemTags.SystemTagsInfoView();
- view = new OCA.SystemTags.SystemTagsInfoViewToggleView({ systemTagsInfoView: systemTagsInfoView });
- });
-
- afterEach(function() {
- view.remove();
- systemTagsInfoView.remove();
- });
-
- describe('initialize', function() {
- it('fails if a "systemTagsInfoView" parameter is not provided', function() {
- var constructor = function() {
- return new OCA.SystemTags.SystemTagsInfoViewToggleView({});
- }
-
- expect(constructor).toThrow();
- });
- });
-
- describe('click on element', function() {
-
- var isVisibleStub;
- var showStub;
- var hideStub;
- var openDropdownStub;
-
- beforeEach(function() {
- isVisibleStub = sinon.stub(systemTagsInfoView, 'isVisible');
- showStub = sinon.stub(systemTagsInfoView, 'show');
- hideStub = sinon.stub(systemTagsInfoView, 'hide');
- openDropdownStub = sinon.stub(systemTagsInfoView, 'openDropdown');
- });
-
- afterEach(function() {
- isVisibleStub.restore();
- showStub.restore();
- hideStub.restore();
- openDropdownStub.restore();
- });
-
- it('shows a not visible SystemTagsInfoView', function() {
- isVisibleStub.returns(false);
-
- view.$el.click();
-
- expect(isVisibleStub.calledOnce).toBeTruthy();
- expect(showStub.calledOnce).toBeTruthy();
- expect(openDropdownStub.calledOnce).toBeTruthy();
- expect(openDropdownStub.calledAfter(showStub)).toBeTruthy();
- expect(hideStub.notCalled).toBeTruthy();
- });
-
- it('hides a visible SystemTagsInfoView', function() {
- isVisibleStub.returns(true);
-
- view.$el.click();
-
- expect(isVisibleStub.calledOnce).toBeTruthy();
- expect(hideStub.calledOnce).toBeTruthy();
- expect(showStub.notCalled).toBeTruthy();
- expect(openDropdownStub.notCalled).toBeTruthy();
- });
-
- });
-
-});