test: remove prefix on all format tests

This commit is contained in:
rvcas 2023-07-14 16:56:27 -04:00
parent eafe3cdf75
commit 252b760ca1
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
1 changed files with 33 additions and 33 deletions

View File

@ -1,7 +1,7 @@
use crate::assert_format; use crate::assert_format;
#[test] #[test]
fn test_format_comment_at_end_of_file() { fn format_comment_at_end_of_file() {
assert_format!( assert_format!(
r#" r#"
type Foo = type Foo =
@ -12,7 +12,7 @@ fn test_format_comment_at_end_of_file() {
} }
#[test] #[test]
fn test_format_simple_module() { fn format_simple_module() {
assert_format!( assert_format!(
r#" r#"
fn smth() { let a = foo.Foo { bar: 1 } } fn smth() { let a = foo.Foo { bar: 1 } }
@ -21,7 +21,7 @@ fn test_format_simple_module() {
} }
#[test] #[test]
fn test_format_if() { fn format_if() {
assert_format!( assert_format!(
r#" r#"
pub fn foo(a) { pub fn foo(a) {
@ -36,7 +36,7 @@ fn test_format_if() {
} }
#[test] #[test]
fn test_format_validator() { fn format_validator() {
assert_format!( assert_format!(
r#" r#"
validator ( ) { validator ( ) {
@ -61,7 +61,7 @@ fn test_format_validator() {
} }
#[test] #[test]
fn test_format_double_validator() { fn format_double_validator() {
assert_format!( assert_format!(
r#" r#"
validator ( param1 : ByteArray ) { validator ( param1 : ByteArray ) {
@ -76,7 +76,7 @@ fn test_format_double_validator() {
} }
#[test] #[test]
fn test_format_when() { fn format_when() {
assert_format!( assert_format!(
r#" r#"
pub fn foo( a) { pub fn foo( a) {
@ -99,7 +99,7 @@ fn test_format_when() {
} }
#[test] #[test]
fn test_format_nested_if() { fn format_nested_if() {
assert_format!( assert_format!(
r#" r#"
pub fn foo(n) { pub fn foo(n) {
@ -114,7 +114,7 @@ fn test_format_nested_if() {
} }
#[test] #[test]
fn test_format_nested_when_if() { fn format_nested_when_if() {
assert_format!( assert_format!(
r#" r#"
pub fn drop(xs: List<a>, n: Int) -> List<a> { pub fn drop(xs: List<a>, n: Int) -> List<a> {
@ -134,7 +134,7 @@ fn test_format_nested_when_if() {
} }
#[test] #[test]
fn test_format_nested_when() { fn format_nested_when() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -154,7 +154,7 @@ fn test_format_nested_when() {
} }
#[test] #[test]
fn test_format_else_if() { fn format_else_if() {
assert_format!( assert_format!(
r#" r#"
pub fn foo(xs: List<a>, n: Int) -> List<a> { pub fn foo(xs: List<a>, n: Int) -> List<a> {
@ -171,7 +171,7 @@ fn test_format_else_if() {
} }
#[test] #[test]
fn test_format_imports() { fn format_imports() {
// TODO: Fix this case, this is behaving weirdly, not keeping the order for the comments and // TODO: Fix this case, this is behaving weirdly, not keeping the order for the comments and
// imports. // imports.
assert_format!( assert_format!(
@ -188,7 +188,7 @@ fn test_format_imports() {
} }
#[test] #[test]
fn test_format_negate() { fn format_negate() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -199,7 +199,7 @@ fn test_format_negate() {
} }
#[test] #[test]
fn test_format_block_arithmetic_expr() { fn format_block_arithmetic_expr() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -214,7 +214,7 @@ fn test_format_block_arithmetic_expr() {
} }
#[test] #[test]
fn test_format_block_logical_expr() { fn format_block_logical_expr() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -233,7 +233,7 @@ fn test_format_block_logical_expr() {
} }
#[test] #[test]
fn test_format_nested_function_calls() { fn format_nested_function_calls() {
assert_format!( assert_format!(
r#" r#"
fn foo(output) { fn foo(output) {
@ -257,7 +257,7 @@ fn test_format_nested_function_calls() {
} }
#[test] #[test]
fn test_format_trace_todo_error() { fn format_trace_todo_error() {
assert_format!( assert_format!(
r#" r#"
fn foo_1() { fn foo_1() {
@ -288,7 +288,7 @@ fn test_format_trace_todo_error() {
} }
#[test] #[test]
fn test_format_trace_if_false() { fn format_trace_if_false() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -303,7 +303,7 @@ fn test_format_trace_if_false() {
} }
#[test] #[test]
fn test_format_newline_comments() { fn format_newline_comments() {
assert_format!( assert_format!(
r#" r#"
// My comment // My comment
@ -324,7 +324,7 @@ fn test_format_newline_comments() {
} }
#[test] #[test]
fn test_format_newline_doc_comments() { fn format_newline_doc_comments() {
assert_format!( assert_format!(
r#" r#"
/// My doc comment /// My doc comment
@ -345,7 +345,7 @@ fn test_format_newline_doc_comments() {
} }
#[test] #[test]
fn test_format_newline_module_comments() { fn format_newline_module_comments() {
assert_format!( assert_format!(
r#" r#"
//// My module comment //// My module comment
@ -364,7 +364,7 @@ fn test_format_newline_module_comments() {
} }
#[test] #[test]
fn test_format_bytearray_literals() { fn format_bytearray_literals() {
assert_format!( assert_format!(
r#" r#"
const foo_const_array = #[102, 111, 111] const foo_const_array = #[102, 111, 111]
@ -385,7 +385,7 @@ fn test_format_bytearray_literals() {
} }
#[test] #[test]
fn test_format_string_literal() { fn format_string_literal() {
assert_format!( assert_format!(
r#" r#"
const foo_const: String = @"foo" const foo_const: String = @"foo"
@ -398,7 +398,7 @@ fn test_format_string_literal() {
} }
#[test] #[test]
fn test_format_unicode() { fn format_unicode() {
assert_format!( assert_format!(
r#" r#"
/// ∞ ★ ♩ ♫ ✓ /// ∞ ★ ♩ ♫ ✓
@ -411,7 +411,7 @@ fn test_format_unicode() {
} }
#[test] #[test]
fn test_format_preserve_pipe() { fn format_preserve_pipe() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -435,7 +435,7 @@ fn test_format_preserve_pipe() {
} }
#[test] #[test]
fn test_format_weird_comments() { fn format_weird_comments() {
assert_format!( assert_format!(
r#" r#"
// A // A
@ -460,7 +460,7 @@ fn test_format_weird_comments() {
} }
#[test] #[test]
fn test_format_trace_callback() { fn format_trace_callback() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -473,7 +473,7 @@ fn test_format_trace_callback() {
} }
#[test] #[test]
fn test_format_pipe_fn() { fn format_pipe_fn() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -487,7 +487,7 @@ fn test_format_pipe_fn() {
} }
#[test] #[test]
fn test_format_match_record() { fn format_match_record() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -504,7 +504,7 @@ fn test_format_match_record() {
} }
#[test] #[test]
fn test_format_fail() { fn format_fail() {
assert_format!( assert_format!(
r#" r#"
test foo() fail { test foo() fail {
@ -517,7 +517,7 @@ fn test_format_fail() {
} }
#[test] #[test]
fn test_format_pipes_and_expressions() { fn format_pipes_and_expressions() {
assert_format!( assert_format!(
r#" r#"
test fmt() { test fmt() {
@ -528,7 +528,7 @@ fn test_format_pipes_and_expressions() {
} }
#[test] #[test]
fn test_format_hex_and_numeric_underscore() { fn format_hex_and_numeric_underscore() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -542,7 +542,7 @@ fn test_format_hex_and_numeric_underscore() {
} }
#[test] #[test]
fn test_format_first_class_binop() { fn format_first_class_binop() {
assert_format!( assert_format!(
r#" r#"
fn foo() { fn foo() {
@ -565,7 +565,7 @@ fn test_format_first_class_binop() {
} }
#[test] #[test]
fn test_format_int_uint() { fn format_int_uint() {
assert_format!( assert_format!(
r#" r#"
const i = 42 const i = 42