File: 02-more.t

package info (click to toggle)
libstring-camelcase-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 401; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,458 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

use strict;
use warnings;
use Test::More tests => 22;
use String::CamelCase qw(camelize decamelize wordsplit);

# camelcases.
is(decamelize("HogeMuge"), "hoge_muge");
is(camelize("hoge_muge"),  "HogeMuge");

is(decamelize("AD"),             "ad");
is(decamelize("YearBBS"),        "year_bbs");
is(decamelize("ClientADClient"), "client_ad_client");
is(decamelize("ADClient"),       "ad_client");

is(camelize("ad"),               "Ad");
is(camelize("year_bbs"),         "YearBbs");
is(camelize("client_ad_client"), "ClientAdClient");
is(camelize("ad_client"),        "AdClient");

# split.
is_deeply([wordsplit("HogeMuge")],  [qw(Hoge Muge)]);
is_deeply([wordsplit("hoge_muge")], [qw(hoge muge)]);

is_deeply([wordsplit("AD")],             [qw(AD)]);
is_deeply([wordsplit("YearBBS")],        [qw(Year BBS)]);
is_deeply([wordsplit("ClientADClient")], [qw(Client AD Client)]);
is_deeply([wordsplit("ADClient")],       [qw(AD Client)]);

is_deeply([wordsplit("ad")],               [qw(ad)]);
is_deeply([wordsplit("year_bbs")],         [qw(year bbs)]);
is_deeply([wordsplit("client_ad_client")], [qw(client ad client)]);
is_deeply([wordsplit("ad_client")],        [qw(ad client)]);

# .
is(decamelize("_ADClient"),       "_ad_client");
is(decamelize(" _ADClient"),      " _ad_client");

# -----------------------------------------------------------------------------
# End of File.
# -----------------------------------------------------------------------------