Mercurial > piecrust2
comparison tests/cli/test_find.chef @ 386:5f0e5276c7cb 2.0.0a9
tests: Add a Chef test for the `find` command.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 11 May 2015 22:25:33 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
385:2d5f2289885a | 386:5f0e5276c7cb |
---|---|
1 --- | |
2 args: find | |
3 out: '' | |
4 --- | |
5 args: find | |
6 in: | |
7 pages/foo.md: '' | |
8 out: | | |
9 pages/foo.md | |
10 --- | |
11 args: find | |
12 in: | |
13 pages/foo.md: '' | |
14 posts/2015-01-10_blah.md: '' | |
15 out: | | |
16 pages/foo.md | |
17 posts/2015-01-10_blah.md | |
18 --- | |
19 args: find foo | |
20 in: | |
21 pages/foo.md: '' | |
22 pages/bar.md: '' | |
23 pages/foo/child.md: '' | |
24 pages/something.md: '' | |
25 out: | | |
26 pages/foo.md | |
27 pages/foo/child.md | |
28 --- | |
29 args: find --exact *foo.md | |
30 in: | |
31 pages/foo.md: '' | |
32 pages/bar.md: '' | |
33 pages/foo/child.md: '' | |
34 pages/something.md: '' | |
35 out: | | |
36 pages/foo.md |