Skip to content

Commit

Permalink
Test on laravel 5.5 (#90)
Browse files Browse the repository at this point in the history
Test on laravel 5.5
  • Loading branch information
GrahamCampbell authored and srmklive committed Aug 25, 2017
1 parent 940029e commit 0974daa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
composer.lock
phpunit.xml
vendor
/.idea
6 changes: 5 additions & 1 deletion .travis.yml
Expand Up @@ -28,6 +28,8 @@ matrix:
env: LARAVEL_VERSION=5.3.*
- php: 7.0
env: LARAVEL_VERSION=5.4.*
- php: 7.0
env: LARAVEL_VERSION=5.5.*
- php: 7.1
env: LARAVEL_VERSION=5.1.*
- php: 7.1
Expand All @@ -36,6 +38,8 @@ matrix:
env: LARAVEL_VERSION=5.3.*
- php: 7.1
env: LARAVEL_VERSION=5.4.*
- php: 7.1
env: LARAVEL_VERSION=5.5.*
- php: hhvm
env: LARAVEL_VERSION=5.1.*
dist: trusty
Expand All @@ -57,4 +61,4 @@ before_install:
install:
- travis_retry composer install --no-suggest --prefer-dist -n -o

script: vendor/bin/phpunit
script: vendor/bin/phpunit
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -24,9 +24,9 @@
"mrclay/minify": "^2.2"
},
"require-dev": {
"graham-campbell/testbench": "^3.1",
"graham-campbell/testbench": "^3.1|^4.0",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.8|^5.0"
"phpunit/phpunit": "^4.8|^5.0|^6.0"
},
"autoload": {
"psr-4": {
Expand Down
12 changes: 0 additions & 12 deletions tests/Functional/AbstractFunctionalTestCase.php
Expand Up @@ -21,18 +21,6 @@
*/
abstract class AbstractFunctionalTestCase extends AbstractTestCase
{
/**
* @before
*/
public function setUpStorage()
{
$files = glob(storage_path('framework/views/*'));

foreach ($files as $file) {
@unlink($file);
}
}

/**
* Normalise eol characters in a string.
*
Expand Down

0 comments on commit 0974daa

Please sign in to comment.