Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
aarondfrancis authored and StyleCIBot committed May 15, 2021
1 parent ffdf53a commit f149c7d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 31 deletions.
5 changes: 0 additions & 5 deletions tests/Commands/ActivateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,13 @@

namespace Hammerstone\Sidecar\Tests;

use Aws\Lambda\Exception\LambdaException;
use Hammerstone\Sidecar\Clients\LambdaClient;
use Hammerstone\Sidecar\Deployment;
use Hammerstone\Sidecar\Events\AfterFunctionsActivated;
use Hammerstone\Sidecar\Events\AfterFunctionsDeployed;
use Hammerstone\Sidecar\Events\BeforeFunctionsActivated;
use Hammerstone\Sidecar\Events\BeforeFunctionsDeployed;
use Hammerstone\Sidecar\Sidecar;
use Hammerstone\Sidecar\Tests\Support\DeploymentTestFunction;
use Illuminate\Support\Facades\Event;
use Mockery;

class ActivateTest extends BaseTest
{
Expand Down Expand Up @@ -107,5 +103,4 @@ public function it_should_activate_functions_with_env()

$this->assertEvents($deployed = false, $activated = true);
}

}
13 changes: 0 additions & 13 deletions tests/Commands/ConfigureTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,11 @@

namespace Hammerstone\Sidecar\Tests;

use Aws\Lambda\Exception\LambdaException;
use Hammerstone\Sidecar\Clients\LambdaClient;
use Hammerstone\Sidecar\Deployment;
use Hammerstone\Sidecar\Events\AfterFunctionsActivated;
use Hammerstone\Sidecar\Events\AfterFunctionsDeployed;
use Hammerstone\Sidecar\Events\BeforeFunctionsActivated;
use Hammerstone\Sidecar\Events\BeforeFunctionsDeployed;
use Hammerstone\Sidecar\Sidecar;
use Hammerstone\Sidecar\Tests\Support\DeploymentTestFunction;
use Illuminate\Support\Facades\Event;
use Mockery;

class ConfigureTest extends BaseTest
{
/** @test */
public function test_todo()
{
$this->markTestIncomplete('Test the configuration command.');
}

}
13 changes: 0 additions & 13 deletions tests/Commands/DeployTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,11 @@

namespace Hammerstone\Sidecar\Tests;

use Aws\Lambda\Exception\LambdaException;
use Hammerstone\Sidecar\Clients\LambdaClient;
use Hammerstone\Sidecar\Deployment;
use Hammerstone\Sidecar\Events\AfterFunctionsActivated;
use Hammerstone\Sidecar\Events\AfterFunctionsDeployed;
use Hammerstone\Sidecar\Events\BeforeFunctionsActivated;
use Hammerstone\Sidecar\Events\BeforeFunctionsDeployed;
use Hammerstone\Sidecar\Sidecar;
use Hammerstone\Sidecar\Tests\Support\DeploymentTestFunction;
use Illuminate\Support\Facades\Event;
use Mockery;

class DeployTest extends DeploymentTest
{

/** @test */
public function it_deploys_the_functions_in_the_config()
{
Expand All @@ -34,7 +24,6 @@ public function it_deploys_the_functions_in_the_config()
$this->assertEvents($deployed = true, $activated = false);
}


/** @test */
public function it_deploys_and_activates_the_functions_in_the_config()
{
Expand Down Expand Up @@ -69,6 +58,4 @@ public function it_uses_a_fake_environment()

$this->assertEvents($deployed = true, $activated = false);
}


}

0 comments on commit f149c7d

Please sign in to comment.