blob: 351e305466d3c9a50529ac11be46ebc510eab133 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Dependencies
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'ert)
(require 'string)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Tests
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(ert-deftest string-caps->kebab ()
(should (string= "foo-bar-baz" (string-caps->kebab "FOO_BAR_BAZ"))))
(ert-deftest string-kebab->caps ()
(should (string= "FOO_BAR_BAZ" (string-kebab->caps "foo-bar-baz"))))
(ert-deftest string-lower->caps ()
(should (string= "FOO_BAR_BAZ" (string-lower->caps "foo bar baz"))))
(ert-deftest string-lower->kebab ()
(should (string= "foo-bar-baz" (string-lower->kebab "foo bar baz"))))
|