fIx final few tests for age_range to year_of_birth change
This commit is contained in:
parent
c702956777
commit
2bf595d135
4 changed files with 7 additions and 7 deletions
|
@ -24,7 +24,7 @@ my $test_json = {
|
||||||
'email' => $email,
|
'email' => $email,
|
||||||
'postcode' => 'LA1 1AA',
|
'postcode' => 'LA1 1AA',
|
||||||
'password' => $password,
|
'password' => $password,
|
||||||
'age_range' => 1
|
year_of_birth => 2006
|
||||||
};
|
};
|
||||||
$t->post_ok('/api/register' => json => $test_json)
|
$t->post_ok('/api/register' => json => $test_json)
|
||||||
->status_is(200)
|
->status_is(200)
|
||||||
|
|
|
@ -17,7 +17,7 @@ my $user = {
|
||||||
email => 'test@example.com',
|
email => 'test@example.com',
|
||||||
postcode => 'LA1 1AA',
|
postcode => 'LA1 1AA',
|
||||||
password => 'abc123',
|
password => 'abc123',
|
||||||
age_range => 1,
|
year_of_birth => 2006,
|
||||||
};
|
};
|
||||||
|
|
||||||
my $org = {
|
my $org = {
|
||||||
|
|
|
@ -17,7 +17,7 @@ my $user1 = {
|
||||||
email => 'test1@example.com',
|
email => 'test1@example.com',
|
||||||
postcode => 'LA1 1AA',
|
postcode => 'LA1 1AA',
|
||||||
password => 'abc123',
|
password => 'abc123',
|
||||||
age_range => 1,
|
year_of_birth => 2006,
|
||||||
};
|
};
|
||||||
|
|
||||||
my $user2 = {
|
my $user2 = {
|
||||||
|
@ -27,7 +27,7 @@ my $user2 = {
|
||||||
email => 'test2@example.com',
|
email => 'test2@example.com',
|
||||||
postcode => 'LA1 1AA',
|
postcode => 'LA1 1AA',
|
||||||
password => 'abc123',
|
password => 'abc123',
|
||||||
age_range => 1,
|
year_of_birth => 2006,
|
||||||
};
|
};
|
||||||
|
|
||||||
my $user3 = {
|
my $user3 = {
|
||||||
|
@ -37,7 +37,7 @@ my $user3 = {
|
||||||
email => 'test3@example.com',
|
email => 'test3@example.com',
|
||||||
postcode => 'LA1 1AA',
|
postcode => 'LA1 1AA',
|
||||||
password => 'abc123',
|
password => 'abc123',
|
||||||
age_range => 1,
|
year_of_birth => 2006,
|
||||||
};
|
};
|
||||||
|
|
||||||
my $user4 = {
|
my $user4 = {
|
||||||
|
@ -47,7 +47,7 @@ my $user4 = {
|
||||||
email => 'test4@example.com',
|
email => 'test4@example.com',
|
||||||
postcode => 'LA1 1AA',
|
postcode => 'LA1 1AA',
|
||||||
password => 'abc123',
|
password => 'abc123',
|
||||||
age_range => 1,
|
year_of_birth => 2006,
|
||||||
};
|
};
|
||||||
|
|
||||||
my $org = {
|
my $org = {
|
||||||
|
|
|
@ -24,7 +24,7 @@ $framework->register_customer({
|
||||||
'email' => $email,
|
'email' => $email,
|
||||||
'postcode' => 'LA1 1AA',
|
'postcode' => 'LA1 1AA',
|
||||||
'password' => $password,
|
'password' => $password,
|
||||||
'age_range' => 1
|
year_of_birth => 2006
|
||||||
});
|
});
|
||||||
|
|
||||||
my $session_key = $framework->login({
|
my $session_key = $framework->login({
|
||||||
|
|
Reference in a new issue