Changeset 6e48560 for t/completion.t
- Timestamp:
- Jul 27, 2009, 11:23:57 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 5368d75
- Parents:
- d7bcff8
- git-author:
- Nelson Elhage <nelhage@mit.edu> (07/27/09 20:24:21)
- git-committer:
- Nelson Elhage <nelhage@mit.edu> (07/27/09 23:23:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
t/completion.t
r13614e7 r6e48560 104 104 1, -1, 7, 12); 105 105 106 107 ## Test common_prefix 108 109 is(BarnOwl::Completion::common_prefix(qw(a b)), ''); 110 is(BarnOwl::Completion::common_prefix(qw(a aa)), 'a'); 111 112 is(BarnOwl::Completion::common_prefix(qw(aa)), 'aa'); 113 114 is(BarnOwl::Completion::common_prefix(qw(a ab abc)), 'a'); 115 116 is(BarnOwl::Completion::common_prefix(qw(abc abcd)), 'abc'); 117 118 is(BarnOwl::Completion::common_prefix(qw(abc abc)), 'abc'); 119 106 120 1;
Note: See TracChangeset
for help on using the changeset viewer.