Skip to content

Commit 8167d02

Browse files
committed
wip
1 parent b759a85 commit 8167d02

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

tests/PackageServiceProviderTests/MultiplePackageMigrationsTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ public function configurePackage(Package $package)
1818
}
1919

2020
/** @test */
21-
public function it_can_publish_the_migration()
21+
public function it_can_publish_multiple_migrations()
2222
{
2323
$this
2424
->artisan('vendor:publish --tag=package-tools-migrations')
2525
->assertExitCode(0);
2626

27-
$this->assertFileExists(database_path('migrations/2020_01_01_000000_create_laravel_package_tools_table.php'));
28-
$this->assertFileExists(database_path('migrations/2020_01_01_000001_create_other_laravel_package_tools_table.php'));
29-
$this->assertFileExists(database_path('migrations/2020_01_01_000002_create_third_laravel_package_tools_table.php'));
27+
$this->assertFileExists(database_path('migrations/2020_01_01_000001_create_laravel_package_tools_table.php'));
28+
$this->assertFileExists(database_path('migrations/2020_01_01_000002_create_other_laravel_package_tools_table.php'));
29+
$this->assertFileExists(database_path('migrations/2020_01_01_000003_create_third_laravel_package_tools_table.php'));
3030
}
3131
}

tests/PackageServiceProviderTests/PackageAssetsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function configurePackage(Package $package)
1717
public function it_can_publish_the_assets()
1818
{
1919
$this
20-
->artisan('vendor:publish --tag=laravel-package-tools-assets')
20+
->artisan('vendor:publish --tag=package-tools-assets')
2121
->assertExitCode(0);
2222

2323
$this->assertFileExists(public_path('vendor/package-tools/dummy.js'));

tests/PackageServiceProviderTests/PackageConfigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function it_can_register_the_config_file()
2323
public function it_can_publish_the_config_file()
2424
{
2525
$this
26-
->artisan('vendor:publish --tag=laravel-package-tools-config')
26+
->artisan('vendor:publish --tag=package-tools-config')
2727
->assertExitCode(0);
2828

2929
$this->assertFileExists(config_path('package-tools.php'));

tests/PackageServiceProviderTests/PackageTranslationsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function it_can_load_the_translations()
2323
public function it_can_publish_the_translations()
2424
{
2525
$this
26-
->artisan('vendor:publish --tag=laravel-package-tools-translations')
26+
->artisan('vendor:publish --tag=package-tools-translations')
2727
->assertExitCode(0);
2828

2929
$this->assertFileExists(resource_path('lang/vendor/package-tools/en/translations.php'));

0 commit comments

Comments
 (0)