tests don't need test_ prefix
This commit is contained in:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user