Simple strings where possible (#27)

This commit is contained in:
Patrick Stevens
2025-07-30 09:06:15 +01:00
committed by GitHub
parent d21786ecd4
commit faacb4770c
6 changed files with 32 additions and 21 deletions

View File

@@ -31,7 +31,7 @@ open WoofWare.Expect
module MyModule =
let emptyString () =
expect {
snapshot @""now has content""
snapshot ""now has content""
return """"
}
@@ -121,7 +121,7 @@ module MyModule =
let emptyVerbatim () =
expect {
snapshot @""now has content""
snapshot ""now has content""
return """"
}
@@ -211,7 +211,7 @@ module MyModule =
let emptyTripleQuote () =
expect {
snapshot @""now has content""
snapshot ""now has content""
return """"
}
@@ -301,7 +301,7 @@ module MyModule =
let onlyWhitespace () =
expect {
snapshot @""now has content""
snapshot ""now has content""
return ""whitespace""
}
@@ -575,7 +575,7 @@ module MyModule =
let veryLongLine () =
expect {
snapshot
@""this line is short though""
""this line is short though""
return ""long line""
}