Expand description
Converts a &str
to table-case
String
use inflector::cases::tablecase::to_table_case;
let mock_string: &str = "foo-bar";
let expected_string: String = "foo_bars".to_string();
let asserted_string: String = to_table_case(mock_string);
assert!(asserted_string == expected_string);
use inflector::cases::tablecase::to_table_case;
let mock_string: &str = "FOO_BAR";
let expected_string: String = "foo_bars".to_string();
let asserted_string: String = to_table_case(mock_string);
assert!(asserted_string == expected_string);
use inflector::cases::tablecase::to_table_case;
let mock_string: &str = "foo_bar";
let expected_string: String = "foo_bars".to_string();
let asserted_string: String = to_table_case(mock_string);
assert!(asserted_string == expected_string);
use inflector::cases::tablecase::to_table_case;
let mock_string: &str = "Foo Bar";
let expected_string: String = "foo_bars".to_string();
let asserted_string: String = to_table_case(mock_string);
assert!(asserted_string == expected_string);
use inflector::cases::tablecase::to_table_case;
let mock_string: &str = "Foo bar";
let expected_string: String = "foo_bars".to_string();
let asserted_string: String = to_table_case(mock_string);
assert!(asserted_string == expected_string);
use inflector::cases::tablecase::to_table_case;
let mock_string: &str = "FooBar";
let expected_string: String = "foo_bars".to_string();
let asserted_string: String = to_table_case(mock_string);
assert!(asserted_string == expected_string);
use inflector::cases::tablecase::to_table_case;
let mock_string: &str = "fooBar";
let expected_string: String = "foo_bars".to_string();
let asserted_string: String = to_table_case(mock_string);
assert!(asserted_string == expected_string);