Function inflector::cases::sentencecase::is_sentence_case
source · [−]Expand description
Determines of a &str
is Sentence case
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "foo-bar-string-that-is-really-really-long";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == false);
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "FooBarIsAReallyReallyLongString";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == false);
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "fooBarIsAReallyReallyLongString";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == false);
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "Foo Bar Is A Really Really Long String";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == false);
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "FOO_BAR_STRING_THAT_IS_REALLY_REALLY_LONG";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == false);
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "foo_bar_string_that_is_really_really_long";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == false);
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "Foo";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == true);
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "foo";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == false);
use inflector::cases::sentencecase::is_sentence_case;
let mock_string: &str = "Foo bar string that is really really long";
let asserted_bool: bool = is_sentence_case(mock_string);
assert!(asserted_bool == true);