summaryrefslogtreecommitdiffstats
path: root/js/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-14 19:22:55 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-14 19:22:55 +0200
commitb567d32b0e51fda52308cc3b64e8c21c969d33eb (patch)
tree2cf8d873a7d06a17df67c66e4e38198535317c56 /js/tests
parentd9acb9ed876d9814e468081d799f06ffd631580f (diff)
first commit, nothing working yet
Diffstat (limited to 'js/tests')
-rw-r--r--js/tests/services/compactSpec.coffee44
-rw-r--r--js/tests/services/languageSpec.coffee103
-rw-r--r--js/tests/services/showallSpec.coffee45
3 files changed, 0 insertions, 192 deletions
diff --git a/js/tests/services/compactSpec.coffee b/js/tests/services/compactSpec.coffee
deleted file mode 100644
index 34a1db462..000000000
--- a/js/tests/services/compactSpec.coffee
+++ /dev/null
@@ -1,44 +0,0 @@
-###
-
-ownCloud - News
-
-@author Bernhard Posselt
-@copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-License as published by the Free Software Foundation; either
-version 3 of the License, or any later version.
-
-This library 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 library. If not, see <http://www.gnu.org/licenses/>.
-
-###
-
-
-describe 'Compact', ->
-
- beforeEach module 'News'
-
- beforeEach inject (@Compact) =>
- @data = true
-
-
- it 'should be false by default', =>
- expect(@Compact.isCompact()).toBe(false)
-
-
- it 'should set the correct compact', =>
- @Compact.handle(@data)
- expect(@Compact.isCompact()).toBe(true)
-
-
- it 'should set the correct compact', =>
- @data = false
- @Compact.handle(@data)
- expect(@Compact.isCompact()).toBe(false) \ No newline at end of file
diff --git a/js/tests/services/languageSpec.coffee b/js/tests/services/languageSpec.coffee
deleted file mode 100644
index d947eb38f..000000000
--- a/js/tests/services/languageSpec.coffee
+++ /dev/null
@@ -1,103 +0,0 @@
-###
-
-ownCloud - News
-
-@author Bernhard Posselt
-@copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-License as published by the Free Software Foundation; either
-version 3 of the License, or any later version.
-
-This library 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 library. If not, see <http://www.gnu.org/licenses/>.
-
-###
-
-
-describe 'Language', ->
-
- beforeEach module 'News'
-
- beforeEach inject (@Language, @FeedType) =>
- @data = 'de'
-
-
- it 'should be en by default', =>
- expect(@Language.getLanguage()).toBe('en')
-
-
- it 'should set the correct language', =>
- @Language.handle(@data)
- expect(@Language.getLanguage()).toBe('de')
-
- it 'should only set the first part of the language if not available', =>
- @Language.handle 'de_DE'
- expect(@Language.getLanguage()).toBe('de')
-
- it 'should default to en', =>
- @Language.handle 'dse_DEst'
- expect(@Language.getLanguage()).toBe('en')
-
-
- it 'should support languages', =>
- langs = [
- 'ar-ma'
- 'ar'
- 'bg'
- 'ca'
- 'cs'
- 'cv'
- 'da'
- 'de'
- 'el'
- 'en-ca'
- 'en-gb'
- 'eo'
- 'es'
- 'et'
- 'eu'
- 'fi'
- 'fr-ca'
- 'fr'
- 'gl'
- 'he'
- 'hi'
- 'hu'
- 'id'
- 'is'
- 'it'
- 'ja'
- 'ka'
- 'ko'
- 'lv'
- 'ms-my'
- 'nb'
- 'ne'
- 'nl'
- 'pl'
- 'pt-br'
- 'pt'
- 'ro'
- 'ru'
- 'sk'
- 'sl'
- 'sv'
- 'th'
- 'tr'
- 'tzm-la'
- 'tzm'
- 'uk'
- 'zh-cn'
- 'zh-tw'
- ]
-
- for lang in langs
- @Language.handle lang
- expect(@Language.getLanguage()).toBe(lang) \ No newline at end of file
diff --git a/js/tests/services/showallSpec.coffee b/js/tests/services/showallSpec.coffee
deleted file mode 100644
index c111560c2..000000000
--- a/js/tests/services/showallSpec.coffee
+++ /dev/null
@@ -1,45 +0,0 @@
-###
-
-ownCloud - News
-
-@author Bernhard Posselt
-@copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-License as published by the Free Software Foundation; either
-version 3 of the License, or any later version.
-
-This library 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 library. If not, see <http://www.gnu.org/licenses/>.
-
-###
-
-
-describe 'ShowAll', ->
-
-
- beforeEach module 'News'
-
- beforeEach inject (@ShowAll) =>
-
- it 'should be false by default', =>
- expect(@ShowAll.getShowAll()).toBeFalsy()
-
-
- it 'should set the correct ShowAll value', =>
- @ShowAll.handle(true)
- expect(@ShowAll.getShowAll()).toBeTruthy()
-
-
- it 'should provide a set Showall setter', =>
- @ShowAll.setShowAll(true)
- expect(@ShowAll.getShowAll()).toBeTruthy()
-
- @ShowAll.setShowAll(false)
- expect(@ShowAll.getShowAll()).toBeFalsy()