summaryrefslogtreecommitdiffstats
path: root/js/dav/test/unit/camelize_test.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dav/test/unit/camelize_test.js')
-rw-r--r--js/dav/test/unit/camelize_test.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/js/dav/test/unit/camelize_test.js b/js/dav/test/unit/camelize_test.js
deleted file mode 100644
index f956d5e0..00000000
--- a/js/dav/test/unit/camelize_test.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import { assert } from 'chai';
-
-import camelize from '../../lib/camelize';
-
-suite('camelize', function() {
- test('single word', function() {
- assert.strictEqual(camelize('green'), 'green');
- });
-
- test('multiple words', function() {
- assert.strictEqual(
- camelize('green-eggs-and-ham', '-'),
- 'greenEggsAndHam'
- );
- });
-
- test('omit delimiter', function() {
- assert.strictEqual(
- camelize('green_eggs_and_ham'),
- 'greenEggsAndHam'
- );
- });
-});