def test_non_personal_tenant_is_ignored(tenant):
    tenant.name = 'MeritAllocation'
    should = update_expiry.should_process_tenant(tenant)
    assert not should
def test_admin_tenant_is_ignored(tenant):
    tenant.status = 'admin'
    should = update_expiry.should_process_tenant(tenant)
    assert not should
def test_non_personal_tenant_is_ignored(tenant):
    tenant.name = 'MeritAllocation'
    should = update_expiry.should_process_tenant(tenant)
    assert not should
def test_suspended_tenant_is_ignored(tenant):
    tenant.status = 'suspended'
    should = update_expiry.should_process_tenant(tenant)
    assert not should
def test_admin_tenant_is_ignored(tenant):
    tenant.status = 'admin'
    should = update_expiry.should_process_tenant(tenant)
    assert not should