2019-02-07 11:45:47 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-02-26 00:35:50 -05:00
|
|
|
const { run } = Deno;
|
2019-03-06 16:39:50 -05:00
|
|
|
import { test } from "../testing/mod.ts";
|
2019-03-06 19:42:24 -05:00
|
|
|
import { assertEquals } from "../testing/asserts.ts";
|
2018-12-19 13:50:48 -05:00
|
|
|
|
|
|
|
/** Example of how to do basic tests */
|
|
|
|
test(function t1() {
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals("hello", "hello");
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test(function t2() {
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals("world", "world");
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
/** A more complicated test that runs a subprocess. */
|
|
|
|
test(async function catSmoke() {
|
|
|
|
const p = run({
|
2019-02-18 18:32:57 -05:00
|
|
|
args: ["deno", "--allow-read", "examples/cat.ts", "README.md"],
|
2019-01-17 13:08:59 -05:00
|
|
|
stdout: "piped"
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|
|
|
|
const s = await p.status();
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(s.code, 0);
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|