diff options
Diffstat (limited to 'tests/unit/util/str.rs')
-rw-r--r-- | tests/unit/util/str.rs | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/tests/unit/util/str.rs b/tests/unit/util/str.rs index be217b0c5ea..9afbc77e823 100644 --- a/tests/unit/util/str.rs +++ b/tests/unit/util/str.rs @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use util::str::{search_index, split_html_space_chars, str_join}; +use util::str::{split_html_space_chars, str_join}; #[test] pub fn split_html_space_chars_whitespace() { @@ -33,15 +33,3 @@ pub fn test_str_join_many() { let expected = "-alpha--beta-gamma-"; assert_eq!(actual, expected); } - -#[test] -pub fn test_search_index() { - let tuples = [("", 1, 0), - ("foo", 8, 3), - ("føo", 8, 3), - ("foo", 2, 2), - ("føo", 2, 3)]; - for t in tuples.iter() { - assert_eq!(search_index(t.1, t.0.char_indices()), t.2); - }; -} |