mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-22 07:52:29 +03:00
Replaced my email address with a fake one from the unit tests.
This commit is contained in:
parent
d030496bed
commit
5e9a7ceef9
3 changed files with 16 additions and 16 deletions
|
@ -66,7 +66,7 @@ class Unit_tests_appointments_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
|
|
@ -96,7 +96,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -151,7 +151,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
// Prepare customer's data (last name field is missing).
|
||||
$customer = array(
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -176,7 +176,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -243,7 +243,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -293,7 +293,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -310,7 +310,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
// Prepare customer's data (no last_name value provided).
|
||||
$customer = array(
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -361,7 +361,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -439,7 +439,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -473,7 +473,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -520,7 +520,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -560,7 +560,7 @@ class Unit_tests_customers_model extends CI_Driver {
|
|||
$customer = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
|
|
@ -629,7 +629,7 @@ class Unit_tests_providers_model extends CI_Driver {
|
|||
$provider = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -706,7 +706,7 @@ class Unit_tests_providers_model extends CI_Driver {
|
|||
$provider = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -746,7 +746,7 @@ class Unit_tests_providers_model extends CI_Driver {
|
|||
$provider = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
@ -808,7 +808,7 @@ class Unit_tests_providers_model extends CI_Driver {
|
|||
$provider = array(
|
||||
'last_name' => 'Doe',
|
||||
'first_name' => 'John',
|
||||
'email' => 'alextselegidis@gmail.com',
|
||||
'email' => 'john@doe.com',
|
||||
'phone_number' => '0123456789',
|
||||
'address' => 'Abbey Road 18',
|
||||
'city' => 'London',
|
||||
|
|
Loading…
Reference in a new issue