Mark central and NHS organisations w/ signed MOUs

This adds information about which orgs have signed an MOU to the domain
list. The meaning of the attribute is:
- `true`: MOU signed for the whole organisation
- `false`: no MOU for any part of the organisation
- `null` (or missing): can’t be sure if it’s true or false
This commit is contained in:
Chris Hill-Scott
2018-02-06 11:55:58 +00:00
parent f93ef2eb3d
commit 20fe084ff1
2 changed files with 135 additions and 3 deletions

View File

@@ -334,7 +334,7 @@ def test_get_valid_government_domain_some_known_details():
government_domain = GovernmentDomain("marinemanagement.org.uk")
assert government_domain.sector is None
assert government_domain.owner == "Marine Management Organisation"
assert government_domain.agreement_signed is False
assert government_domain.agreement_signed is True
def test_validate_government_domain_data():