-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathModuleGeneratorTest.php
60 lines (48 loc) · 1.87 KB
/
ModuleGeneratorTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
class ModuleGeneratorTest extends TestCase
{
public function testModuleGenerateCommand()
{
// $this->artisan('modulegenerator:generate', [
// 'name' => 'Posts',
// '--fields' => "title#string; content#text; category#select#options=technology,tips,health",
// ]);
// $this->assertContains('Controller already exists!', $this->consoleOutput());
}
public function testControllerGenerateCommand()
{
/*$this->artisan('modulegenerator:controller', [
'name' => 'CustomersController',
'--crud-name' => 'customers',
'--model-name' => 'Customer',
]);
$this->assertContains('Controller created successfully.', $this->consoleOutput());
$this->assertFileExists(app_path('Http/Controllers') . '/CustomersController.php');*/
}
public function testModelGenerateCommand()
{
/*$this->artisan('modulegenerator:model', [
'name' => 'Customer',
'--fillable' => "['name', 'email']",
]);
$this->assertContains('Model created successfully.', $this->consoleOutput());
$this->assertFileExists(app_path() . '/Customer.php');*/
}
public function testMigrationGenerateCommand()
{
/*$this->artisan('modulegenerator:migration', [
'name' => 'customers',
'--schema' => 'name#string; email#email',
]);
$this->assertContains('Migration created successfully.', $this->consoleOutput());*/
}
public function testViewGenerateCommand()
{
/*$this->artisan('modulegenerator:view', [
'name' => 'customers',
'--fields' => "title#string; body#text",
]);
$this->assertContains('View created successfully.', $this->consoleOutput());
$this->assertDirectoryExists(config('view.paths')[0] . '/customers');*/
}
}