Repository: couchdb-fauxton Updated Branches: refs/heads/master bbebeb7e0 -> 69d098bf5
delete unused test skeletons they are not used and backbone based view testing is painful anyway, so i don't think someone will add some in the future. if it happens, we can revert this commit. Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/69d098bf Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/69d098bf Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/69d098bf Branch: refs/heads/master Commit: 69d098bf560ebebba4500361f1d090899dfbaa5b Parents: bbebeb7 Author: Robert Kowalski <[email protected]> Authored: Fri Feb 27 17:44:35 2015 +0100 Committer: Robert Kowalski <[email protected]> Committed: Tue Mar 3 10:03:39 2015 +0100 ---------------------------------------------------------------------- .../documents/tests/views-doceditorSpec.js | 33 -------------------- app/addons/documents/tests/views-indexSpec.js | 33 -------------------- app/addons/documents/tests/views-sidebarSpec.js | 33 -------------------- 3 files changed, 99 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/69d098bf/app/addons/documents/tests/views-doceditorSpec.js ---------------------------------------------------------------------- diff --git a/app/addons/documents/tests/views-doceditorSpec.js b/app/addons/documents/tests/views-doceditorSpec.js deleted file mode 100644 index 480d160..0000000 --- a/app/addons/documents/tests/views-doceditorSpec.js +++ /dev/null @@ -1,33 +0,0 @@ -// Licensed under the Apache License, Version 2.0 (the "License"); you may not -// use this file except in compliance with the License. You may obtain a copy of -// the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -// License for the specific language governing permissions and limitations under -// the License. -define([ - 'addons/documents/views-doceditor', - 'testUtils' -], function (Views, testUtils) { - var assert = testUtils.assert, - ViewSandbox = testUtils.ViewSandbox, - viewSandbox; - - describe('Documents Doc Editor', function () { - var view; - beforeEach(function () { - viewSandbox = new ViewSandbox(); - viewSandbox.renderView(view); - }); - - afterEach(function () { - viewSandbox.remove(); - }); - }); -}); - - http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/69d098bf/app/addons/documents/tests/views-indexSpec.js ---------------------------------------------------------------------- diff --git a/app/addons/documents/tests/views-indexSpec.js b/app/addons/documents/tests/views-indexSpec.js deleted file mode 100644 index 7012a04..0000000 --- a/app/addons/documents/tests/views-indexSpec.js +++ /dev/null @@ -1,33 +0,0 @@ -// Licensed under the Apache License, Version 2.0 (the "License"); you may not -// use this file except in compliance with the License. You may obtain a copy of -// the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -// License for the specific language governing permissions and limitations under -// the License. -define([ - 'addons/documents/views-index', - 'testUtils' -], function (Views, testUtils) { - var assert = testUtils.assert, - ViewSandbox = testUtils.ViewSandbox, - viewSandbox; - - describe('Documents Indexes', function () { - var view; - beforeEach(function () { - viewSandbox = new ViewSandbox(); - viewSandbox.renderView(view); - }); - - afterEach(function () { - viewSandbox.remove(); - }); - }); -}); - - http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/69d098bf/app/addons/documents/tests/views-sidebarSpec.js ---------------------------------------------------------------------- diff --git a/app/addons/documents/tests/views-sidebarSpec.js b/app/addons/documents/tests/views-sidebarSpec.js deleted file mode 100644 index 60f1a16..0000000 --- a/app/addons/documents/tests/views-sidebarSpec.js +++ /dev/null @@ -1,33 +0,0 @@ -// Licensed under the Apache License, Version 2.0 (the "License"); you may not -// use this file except in compliance with the License. You may obtain a copy of -// the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -// License for the specific language governing permissions and limitations under -// the License. -define([ - 'addons/documents/shared-views', - 'testUtils' -], function (Views, testUtils) { - var assert = testUtils.assert, - ViewSandbox = testUtils.ViewSandbox, - viewSandbox; - - describe('Documents Sidebar', function () { - var view; - beforeEach(function () { - viewSandbox = new ViewSandbox(); - viewSandbox.renderView(view); - }); - - afterEach(function () { - viewSandbox.remove(); - }); - }); -}); - -
