Version 5.1 - All the GraphQL #32
@ -55,7 +55,7 @@ class DispatcherTest extends AnimeClient_TestCase {
|
||||
|
||||
public function dataRoute()
|
||||
{
|
||||
$default_config = [
|
||||
$defaultConfig = [
|
||||
'routes' => [
|
||||
'routes' => [
|
||||
'login_form' => [
|
||||
@ -94,25 +94,25 @@ class DispatcherTest extends AnimeClient_TestCase {
|
||||
|
||||
$data = [
|
||||
'anime_default_routing_manga' => [
|
||||
'config' => $default_config,
|
||||
'config' => $defaultConfig,
|
||||
'controller' => 'manga',
|
||||
'host' => "localhost",
|
||||
'uri' => "/manga/plan_to_read",
|
||||
],
|
||||
'manga_default_routing_anime' => [
|
||||
'config' => $default_config,
|
||||
'config' => $defaultConfig,
|
||||
'controller' => 'anime',
|
||||
'host' => "localhost",
|
||||
'uri' => "/anime/watching",
|
||||
],
|
||||
'anime_default_routing_anime' => [
|
||||
'config' => $default_config,
|
||||
'config' => $defaultConfig,
|
||||
'controller' => 'anime',
|
||||
'host' => 'localhost',
|
||||
'uri' => '/anime/watching',
|
||||
],
|
||||
'manga_default_routing_manga' => [
|
||||
'config' => $default_config,
|
||||
'config' => $defaultConfig,
|
||||
'controller' => 'manga',
|
||||
'host' => 'localhost',
|
||||
'uri' => '/manga/plan_to_read'
|
||||
|
@ -33,7 +33,7 @@ class RoutingBaseTest extends AnimeClient_TestCase {
|
||||
/**
|
||||
* @dataProvider dataSegments
|
||||
*/
|
||||
public function testSegments($requestUri, $path, $segments, $last_segment)
|
||||
public function testSegments($requestUri, $path, $segments, $lastSegment)
|
||||
{
|
||||
$this->setSuperGlobals([
|
||||
'_SERVER' => [
|
||||
@ -43,7 +43,7 @@ class RoutingBaseTest extends AnimeClient_TestCase {
|
||||
|
||||
$this->assertEquals($path, $this->routingBase->path(), "Path is invalid");
|
||||
$this->assertEquals($segments, $this->routingBase->segments(), "Segments array is invalid");
|
||||
$this->assertEquals($last_segment, $this->routingBase->last_segment(), "Last segment is invalid");
|
||||
$this->assertEquals($lastSegment, $this->routingBase->last_segment(), "Last segment is invalid");
|
||||
|
||||
foreach($segments as $i => $value)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user