Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
9c564808
Commit
9c564808
authored
Jun 03, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing models for Redis tests
parent
092ca93a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
60 additions
and
0 deletions
+60
-0
OrderItemWithNullFK.php
tests/unit/data/ar/redis/OrderItemWithNullFK.php
+24
-0
OrderWithNullFK.php
tests/unit/data/ar/redis/OrderWithNullFK.php
+24
-0
ActiveRecordTest.php
tests/unit/extensions/redis/ActiveRecordTest.php
+12
-0
No files found.
tests/unit/data/ar/redis/OrderItemWithNullFK.php
0 → 100644
View file @
9c564808
<?php
namespace
yiiunit\data\ar\redis
;
/**
* Class OrderItem
*
* @property integer $order_id
* @property integer $item_id
* @property integer $quantity
* @property string $subtotal
*/
class
OrderItemWithNullFK
extends
ActiveRecord
{
public
static
function
primaryKey
()
{
return
[
'order_id'
,
'item_id'
];
}
public
function
attributes
()
{
return
[
'order_id'
,
'item_id'
,
'quantity'
,
'subtotal'
];
}
}
tests/unit/data/ar/redis/OrderWithNullFK.php
0 → 100644
View file @
9c564808
<?php
namespace
yiiunit\data\ar\redis
;
/**
* Class Order
*
* @property integer $id
* @property integer $customer_id
* @property integer $created_at
* @property string $total
*/
class
OrderWithNullFK
extends
ActiveRecord
{
public
static
function
primaryKey
()
{
return
[
'id'
];
}
public
function
attributes
()
{
return
[
'id'
,
'customer_id'
,
'created_at'
,
'total'
];
}
}
tests/unit/extensions/redis/ActiveRecordTest.php
View file @
9c564808
...
...
@@ -8,6 +8,8 @@ use yiiunit\data\ar\redis\Customer;
use
yiiunit\data\ar\redis\OrderItem
;
use
yiiunit\data\ar\redis\Order
;
use
yiiunit\data\ar\redis\Item
;
use
yiiunit\data\ar\redis\OrderItemWithNullFK
;
use
yiiunit\data\ar\redis\OrderWithNullFK
;
use
yiiunit\framework\ar\ActiveRecordTestTrait
;
/**
...
...
@@ -37,6 +39,16 @@ class ActiveRecordTest extends RedisTestCase
return
OrderItem
::
className
();
}
public
function
getOrderWithNullFKClass
()
{
return
OrderWithNullFK
::
className
();
}
public
function
getOrderItemWithNullFKmClass
()
{
return
OrderItemWithNullFK
::
className
();
}
public
function
setUp
()
{
parent
::
setUp
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment