-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* notes for 674 change * add new flipper for 674 work * add flipper statements in form674 * assign proc_state manually if the flipper is not flipped * if the claim is a submittable 686, then it must be manual again * rewrite unit tests * rename flipper for rubocop rules.
- Loading branch information
Showing
4 changed files
with
114 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,4 +143,87 @@ | |
}.to_json | ||
} | ||
end | ||
factory :dependency_claim_674_only, class: 'SavedClaim::DependencyClaim' do | ||
form_id { '686C-674' } | ||
|
||
form { | ||
{ | ||
'view:selectable686_options': { | ||
report674: true | ||
}, | ||
add_child: false, | ||
privacy_agreementAccepted: true, | ||
veteran_information: { | ||
full_name: { | ||
first: 'Mark', | ||
middle: 'A', | ||
last: 'Webb', | ||
suffix: 'Jr.' | ||
}, | ||
ssn: '796104437', | ||
va_file_number: '796104437', | ||
service_number: '12345678', | ||
birth_date: '1950-10-04' | ||
}, | ||
dependents_application: { | ||
veteran_information: { | ||
full_name: { | ||
first: 'Mark', | ||
middle: 'A', | ||
last: 'Webb', | ||
suffix: 'Jr.' | ||
}, | ||
ssn: '796104437', | ||
va_file_number: '796104437', | ||
service_number: '12345678', | ||
birth_date: '1950-10-04' | ||
}, | ||
veteran_contact_information: { | ||
veteran_address: { | ||
country_name: 'USA', | ||
address_line1: '8200 DOBY LN', | ||
city: 'PASADENA', | ||
stateCode: 'CA', | ||
zip_code: '21122' | ||
}, | ||
phone_number: '1112223333', | ||
email_address: '[email protected]' | ||
}, | ||
student_name_and_ssn: { | ||
full_name: { | ||
first: 'Juan', | ||
last: 'Barrett' | ||
}, | ||
ssn: '333224444', | ||
birth_date: '2001-10-06' | ||
}, | ||
student_address_marriage_tuition: { | ||
address: { | ||
country_name: 'USA', | ||
address_line1: '1900 W Olney Ave.', | ||
city: 'Philadelphia', | ||
state_code: 'PA', | ||
zip_code: '19141' | ||
}, | ||
was_married: false, | ||
tuition_is_paid_by_gov_agency: false | ||
}, | ||
program_information: { | ||
student_is_enrolled_full_time: true | ||
}, | ||
school_information: { | ||
name: 'University of Pennsylvania', | ||
address: { | ||
country_name: 'USA', | ||
address_line1: '4201 Henry Ave', | ||
city: 'Philadelphia', | ||
state_code: 'PA', | ||
zip_code: '19144' | ||
} | ||
}, | ||
student_did_attend_school_last_term: false | ||
} | ||
}.to_json | ||
} | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters