0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

TOML: Move to encoding dir (denoland/deno_std#435)

Original: 7a722ceffc
This commit is contained in:
Vincent LE GOFF 2019-05-23 20:48:54 +02:00 committed by Ryan Dahl
parent 73f7be6ae0
commit 0803912c7f
19 changed files with 6 additions and 5 deletions

View file

@ -33,7 +33,7 @@ Here are the dedicated documentations of modules:
- [prettier](prettier/README.md)
- [strings](strings/README.md)
- [testing](testing/README.md)
- [toml](toml/README.md)
- [toml](encoding/toml/README.md)
- [ws](ws/README.md)
## Contributing

View file

@ -1,2 +1,2 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./parser_test.ts";
import "./toml_test.ts";

View file

@ -3,9 +3,10 @@ import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { existsSync } from "../fs/exists.ts";
import { readFileStrSync } from "../fs/read_file_str.ts";
import { parse, stringify } from "./parser.ts";
import { parse, stringify } from "./toml.ts";
import * as path from "../fs/path/mod.ts";
const testFilesDir = path.resolve("toml", "testdata");
const testFilesDir = path.resolve("encoding", "testdata");
function parseFile(filePath: string): object {
if (!existsSync(filePath)) {

View file

@ -3,6 +3,7 @@
import "./archive/tar_test.ts";
import "./colors/test.ts";
import "./datetime/test.ts";
import "./encoding/test.ts";
import "./examples/test.ts";
import "./flags/test.ts";
import "./fs/test.ts";
@ -16,7 +17,6 @@ import "./prettier/test.ts";
import "./strings/test.ts";
import "./testing/test.ts";
import "./textproto/test.ts";
import "./toml/test.ts";
import "./util/test.ts";
import "./ws/test.ts";