aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-05-14 16:44:09 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-05-14 16:44:09 -0700
commitd3a3352ba05c58d4f1de798767b9853f05b65f98 (patch)
tree21e8d1c0cb65a4e709346057bf8880b6dc49716a /tests
parent31d7bcfce6eae388ed97691d1cba5b1e663c8488 (diff)
downloadconsfigurator-d3a3352ba05c58d4f1de798767b9853f05b65f98.tar.gz
replace uses of WITH-LOCAL-CONNECTION in tests/property/file.lisp
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'tests')
-rw-r--r--tests/property/file.lisp24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/property/file.lisp b/tests/property/file.lisp
index 10a20b1..1ebd878 100644
--- a/tests/property/file.lisp
+++ b/tests/property/file.lisp
@@ -11,8 +11,8 @@
one three
# one three
EOF s))
- (with-local-connection
- (file:contains-conf-space temp "foo" "baz" "one" "four" "two" "five"))
+ (deploy-these :local "localhost"
+ (evals `(file:contains-conf-space ,temp "foo" "baz" "one" "four" "two" "five")))
(read-file-string temp))
#>EOF>foo baz
@@ -30,9 +30,9 @@ EOF)
# bar=baz
other="three word s"
EOF s))
- (with-local-connection
- (file:contains-conf-shell
- temp "bar" "two words" "quux" "one" "other" "one"))
+ (deploy-these :local "localhost"
+ (evals `(file:contains-conf-shell
+ ,temp "bar" "two words" "quux" "one" "other" "one")))
(read-file-string temp))
#>EOF>foo="bar baz"
@@ -51,13 +51,13 @@ two=three
; bar = ba
bar = baz baz quux
EOF s))
- (with-local-connection
- (file:contains-ini-settings temp
- '("one" "four" "five")
- '("another" "k" "v")
- '("other" "bar" "baz")
- '("another" "key" "val")
- '("finally" "this" "one")))
+ (deploy-these :local "localhost"
+ (evals `(file:contains-ini-settings ,temp
+ '("one" "four" "five")
+ '("another" "k" "v")
+ '("other" "bar" "baz")
+ '("another" "key" "val")
+ '("finally" "this" "one"))))
(read-file-string temp))
#>EOF>[one]
two=three