tests don't need test_ prefix

This commit is contained in:
2020-07-26 12:37:41 +01:00
parent f2ae43e85f
commit b5050720d8
13 changed files with 37 additions and 37 deletions

View File

@@ -35,7 +35,7 @@ mod test {
use std::str::FromStr;
#[test]
fn test_ending_from_string() {
fn ending_from_string() {
assert_eq!(
Ending::from_str(include_str!("test-resources/ending")).unwrap(),
Ending {
@@ -46,7 +46,7 @@ mod test {
}
#[test]
fn test_ending_to_string() {
fn ending_to_string() {
assert_eq!(
Ending {
id: "7".to_string(),