Skip to content

Commit

Permalink
Rename namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Braden Keith committed Mar 8, 2021
1 parent 4fb0de2 commit bdaa833
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Contributions are **welcome** and will be fully **credited**.

We accept contributions via Pull Requests on [Github](https://github.com/romegadigital/nova-testing-helper).
We accept contributions via Pull Requests on [Github](https://github.com/romegasoftware/nova-test-suite).


## Pull Requests
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
},
"autoload": {
"psr-4": {
"Romegadigital\\NovaTestSuite\\": "./src"
"RomegaSoftware\\NovaTestSuite\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Romegadigital\\NovaTestSuite\\Tests\\": "tests"
"RomegaSoftware\\NovaTestSuite\\Tests\\": "tests"
}
},
"scripts": {
Expand All @@ -38,7 +38,7 @@
"extra": {
"laravel": {
"providers": [
"Romegadigital\\NovaTestSuite\\NovaTestSuiteServiceProvider"
"RomegaSoftware\\NovaTestSuite\\NovaTestSuiteServiceProvider"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
stopOnFailure="false">

<testsuites>
<testsuite name="romegadigital/nova-testing-helper Test Suite">
<testsuite name="RomegaSoftware/NovaTestSuite">
<directory>tests</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ $this->deleteResource(12);
```

### actions
Use `assertHasActions()
Use `assertHasActions()`

### lenses

Expand Down
2 changes: 1 addition & 1 deletion src/Commands/CreateResourceTestCase.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Romegadigital\NovaTestSuite\Commands;
namespace RomegaSoftware\NovaTestSuite\Commands;

use Illuminate\Support\Str;
use Illuminate\Console\GeneratorCommand;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/PublishNovaResourceTestCase.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Romegadigital\NovaTestSuite\Commands;
namespace RomegaSoftware\NovaTestSuite\Commands;

use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/stubs/NovaResourceTestCase.stub
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Tests\Feature\Nova;
use Tests\TestCase;
use Laravel\Nova\Nova;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Romegadigital\NovaTestSuite\Traits\InteractsWithNovaResources;
use RomegaSoftware\NovaTestSuite\Traits\InteractsWithNovaResources;

abstract class NovaResourceTestCase extends TestCase
{
Expand Down
6 changes: 3 additions & 3 deletions src/NovaTestSuiteServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php

namespace Romegadigital\NovaTestSuite;
namespace RomegaSoftware\NovaTestSuite;

use Illuminate\Contracts\Support\DeferrableProvider;
use Illuminate\Support\ServiceProvider;
use Illuminate\Testing\TestResponse;
use Illuminate\Support\Str;
use Romegadigital\NovaTestSuite\Commands\CreateResourceTestCase;
use Romegadigital\NovaTestSuite\Commands\PublishNovaResourceTestCase;
use RomegaSoftware\NovaTestSuite\Commands\CreateResourceTestCase;
use RomegaSoftware\NovaTestSuite\Commands\PublishNovaResourceTestCase;

class NovaTestSuiteServiceProvider extends ServiceProvider implements DeferrableProvider
{
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/InteractsWithNovaResources.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Romegadigital\NovaTestSuite\Traits;
namespace RomegaSoftware\NovaTestSuite\Traits;

use Illuminate\Support\Arr;
use Illuminate\Database\Eloquent\Model;
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/MakesNovaHttpRequests.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Romegadigital\NovaTestSuite\Traits;
namespace RomegaSoftware\NovaTestSuite\Traits;

trait MakesNovaHttpRequests
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Romegadigital\NovaTestSuite\Tests;
namespace RomegaSoftware\NovaTestSuite\Tests;

use Orchestra\Testbench\TestCase as Orchestra;

Expand All @@ -16,7 +16,7 @@ class TestCase extends Orchestra
protected function getPackageProviders($app)
{
return [
\Romegadigital\NovaTestSuite\NovaTestSuiteServiceProvider::class,
\RomegaSoftware\NovaTestSuite\NovaTestSuiteServiceProvider::class,
];
}

Expand Down

0 comments on commit bdaa833

Please sign in to comment.