From 0316a04c4222846f6e1cbabfc69002945e213343 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 17 Mar 2016 17:00:32 -0700 Subject: [PATCH] tools.deploy.test.19: make sure to test vocab urls. --- basis/tools/deploy/test/19/19.factor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/basis/tools/deploy/test/19/19.factor b/basis/tools/deploy/test/19/19.factor index 6b0a51209f..eafca60f33 100644 --- a/basis/tools/deploy/test/19/19.factor +++ b/basis/tools/deploy/test/19/19.factor @@ -4,6 +4,7 @@ USING: io io.files io.encodings.ascii ; IN: tools.deploy.test.19 : main ( -- ) - "resource:LICENSE.txt" ascii file-contents write ; + ! make sure to test vocab: urls + "vocab:LICENSE.txt" ascii file-contents write ; MAIN: main