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

@@ -30,7 +30,7 @@ mod test {
use crate::variable::Variable;
#[test]
fn test_variable_from_string() {
fn variable_from_string() {
assert_eq!(
Variable::from("VAR a\n42".to_string()),
Variable {
@@ -41,7 +41,7 @@ mod test {
}
#[test]
fn test_variable_to_string() {
fn variable_to_string() {
let output = Variable {
id: "c".to_string(),
initial_value: "57".to_string(),