Skip to content

Commit 4701269

Browse files
committed
Removed useless travisCI test and moved test into a test route
1 parent b6cf812 commit 4701269

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ env:
1313

1414
matrix:
1515
include:
16-
- php: 5.5.9
17-
env: setup=lowest
18-
- php: 5.5.9
16+
- php: 5.6
1917
env: setup=stable
2018

2119
sudo: false
@@ -26,6 +24,5 @@ before_install:
2624
install:
2725
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-dist; fi
2826
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
29-
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
3027

3128
script: vendor/bin/phpunit

app/Http/routes.php

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
use Maknz\Slack\Facades\Slack;
1515

1616
Route::get('/', function () {
17+
return view('welcome');
18+
});
19+
20+
Route::get('/test', function () {
1721
Slack::send('test');
1822

1923
return view('welcome');

0 commit comments

Comments
 (0)