@@ 36-42 (lines=7) @@ | ||
33 | /** |
|
34 | * Test minimal. |
|
35 | */ |
|
36 | public function testMinimal() |
|
37 | { |
|
38 | $dir = __DIR__ . DIRECTORY_SEPARATOR . 'minimal'; |
|
39 | $this->tester->config($dir . '/.hidev/config.yml'); |
|
40 | $this->tester->hidev('README.md'); |
|
41 | $this->tester->assertFiles($dir, ['.']); |
|
42 | } |
|
43 | ||
44 | /** |
|
45 | * Test options. |
|
@@ 47-53 (lines=7) @@ | ||
44 | /** |
|
45 | * Test options. |
|
46 | */ |
|
47 | public function testMore() |
|
48 | { |
|
49 | $dir = __DIR__ . DIRECTORY_SEPARATOR . 'more'; |
|
50 | $this->tester->config($dir . '/.hidev/config.yml'); |
|
51 | $this->tester->hidev('README.md'); |
|
52 | $this->tester->assertFiles($dir, ['.']); |
|
53 | } |
|
54 | ||
55 | /** |
|
56 | * Test docs/readme. |