Changeset 3290
- Timestamp:
- 05/16/05 14:40:31 (4 years ago)
- svk:copy_cache_prev:
- 4878
- Location:
- t/builtins/strings
- Files:
-
- 9 modified
Legend:
- Unmodified
- Added
- Removed
-
t/builtins/strings/capitalize.t
r3288 r3290 5 5 6 6 plan 5; 7 8 # L<S29/"Perl6::Str" /capitalize/> 7 9 8 10 is capitalize(""), "", "capitalize('') works"; -
t/builtins/strings/chomp.t
r2367 r3290 11 11 12 12 =cut 13 14 # L<S29/"Perl6::Str" /chomp/> 13 15 14 16 { -
t/builtins/strings/chr.t
r2367 r3290 8 8 =pod 9 9 10 Basic tests for the ch ar() builtin10 Basic tests for the chr() builtin 11 11 12 12 NOTE: these tests only deal with ASCII 13 13 14 14 =cut 15 16 # L<S29/"Conversion" /chr/> 15 17 16 18 # What is the best way to test 0 through 31?? -
t/builtins/strings/lc.t
r2367 r3290 5 5 6 6 plan 7; 7 8 # L<S29/"Perl6::Str" /lc/> 7 9 8 10 is(lc("Hello World"), "hello world", "simple lc test"); -
t/builtins/strings/lcfirst.t
r2367 r3290 6 6 plan 4; 7 7 8 # L<S29/"Perl6::Str" /lcfirst/> 9 8 10 is lcfirst("HELLO WORLD"), "hELLO WORLD", "simple"; 9 11 is lcfirst(""), "", "empty string"; -
t/builtins/strings/ord.t
r2367 r3290 13 13 14 14 =cut 15 16 # L<S29/"Conversions" /ord/> 15 17 16 18 # What is the best way to test 0 through 31?? -
t/builtins/strings/substr.t
r2406 r3290 5 5 6 6 plan 23; 7 8 # L<S29/"Perl6::Str" /substr/> 7 9 8 10 { # read only -
t/builtins/strings/uc.t
r2367 r3290 6 6 plan 8; 7 7 force_todo 8; 8 9 # L<S29/"Perl6::Str" /uc/> 8 10 9 11 is(uc("Hello World"), "HELLO WORLD", "simple"); -
t/builtins/strings/ucfirst.t
r2367 r3290 6 6 plan 4; 7 7 8 # L<S29/"Perl6::Str" /ucfirst/> 9 8 10 is ucfirst("hello world"), "Hello world", "simple"; 9 11 is ucfirst(""), "", "empty string";
