diff options
author | Michael Vogt <mvo@debian.org> | 2013-11-29 13:39:45 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-11-29 13:39:45 +0100 |
commit | e4a93f90b2e50f6833f7146496e574a5a9cedaca (patch) | |
tree | 836dd5e70b394f9996d4af0bdfcd52d2a388a007 /test | |
parent | fdef7c5e3a19c5f35ee952598124d0fe8d03c7ec (diff) | |
parent | faeb435cab7b41a50c621ef9f96853d15c57d0d8 (diff) |
Merge remote-tracking branch 'mvo/debian/sid' into debian/sid
Conflicts:
apt-private/private-cmndline.cc
Diffstat (limited to 'test')
-rw-r--r-- | test/libapt/strutil_test.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/libapt/strutil_test.cc b/test/libapt/strutil_test.cc index 110a20d27..8215654d0 100644 --- a/test/libapt/strutil_test.cc +++ b/test/libapt/strutil_test.cc @@ -69,5 +69,23 @@ int main(int argc,char *argv[]) result = StringSplit(input, ""); equals(result.size(), 0); + // endswith + bool b; + input = "abcd"; + b = APT::String::Endswith(input, "d"); + equals(b, true); + + b = APT::String::Endswith(input, "cd"); + equals(b, true); + + b = APT::String::Endswith(input, "abcd"); + equals(b, true); + + b = APT::String::Endswith(input, "x"); + equals(b, false); + + b = APT::String::Endswith(input, "abcndefg"); + equals(b, false); + return 0; } |