2019-11-18 09:39:32 -05:00
|
|
|
// Ported from js-yaml v3.13.1:
|
|
|
|
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
|
|
|
|
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
|
2020-01-21 10:01:55 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-11-18 09:39:32 -05:00
|
|
|
|
|
|
|
import { assertEquals } from "../../testing/asserts.ts";
|
|
|
|
import { stringify } from "./stringify.ts";
|
|
|
|
|
2020-02-11 11:24:27 -05:00
|
|
|
Deno.test({
|
2019-11-18 09:39:32 -05:00
|
|
|
name: "stringified correctly",
|
|
|
|
fn(): void {
|
|
|
|
const FIXTURE = {
|
|
|
|
foo: {
|
|
|
|
bar: true,
|
|
|
|
test: [
|
|
|
|
"a",
|
|
|
|
"b",
|
|
|
|
{
|
2020-03-28 13:03:49 -04:00
|
|
|
a: false,
|
2019-11-18 09:39:32 -05:00
|
|
|
},
|
|
|
|
{
|
2020-03-28 13:03:49 -04:00
|
|
|
a: false,
|
|
|
|
},
|
|
|
|
],
|
2019-11-18 09:39:32 -05:00
|
|
|
},
|
2020-03-28 13:03:49 -04:00
|
|
|
test: "foobar",
|
2019-11-18 09:39:32 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
const ASSERTS = `foo:
|
|
|
|
bar: true
|
|
|
|
test:
|
|
|
|
- a
|
|
|
|
- b
|
|
|
|
- a: false
|
|
|
|
- a: false
|
|
|
|
test: foobar
|
|
|
|
`;
|
|
|
|
|
|
|
|
assertEquals(stringify(FIXTURE), ASSERTS);
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 09:39:32 -05:00
|
|
|
});
|