diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-21 12:30:38 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-21 12:30:38 +0200 |
commit | 03ff256dc44228c9465cd2040593a72b2d084d1e (patch) | |
tree | 00a0ea59a21f49f4ffb9565f624c73a45d08826e /tests/manifest-serializer/testscript | |
parent | ed93f8450b92579dd639ae25361fa650613a5b7e (diff) |
Add manifest serializer module
Diffstat (limited to 'tests/manifest-serializer/testscript')
-rw-r--r-- | tests/manifest-serializer/testscript | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/manifest-serializer/testscript b/tests/manifest-serializer/testscript new file mode 100644 index 0000000..af96cc0 --- /dev/null +++ b/tests/manifest-serializer/testscript @@ -0,0 +1,35 @@ +# file : tests/manifest-serializer/testscript +# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +$* <<EOI >>EOO + +1 + +name +foo + +version +1.2.3 + +description +foo +executable + +depends +libfoo + +depends +libbar + +EOI +: 1 +name: foo +version: 1.2.3 +description: foo +executable +depends: libfoo +depends: libbar +EOO + +#@@ TODO: test writing to file instead of stdout. |