@ -82,14 +82,14 @@ RSpec.describe Form, type: :model do
end
context " armed forces injured validation " do
it " must be anwered if tenant was a regular or reserve in armed forces " do
it " must be ans wered if tenant was a regular or reserve in armed forces " do
expect {
CaseLog . create! ( armed_forces : " Yes - a regular " ,
armed_forces_injured : nil )
} . to raise_error ( ActiveRecord :: RecordInvalid )
end
it " must be anwered if tenant was not a regular or reserve in armed forces " do
it " must be ans wered if tenant was not a regular or reserve in armed forces " do
expect {
CaseLog . create! ( armed_forces : " No " ,
armed_forces_injured : " Yes " )
@ -116,6 +116,53 @@ RSpec.describe Form, type: :model do
} . to raise_error ( ActiveRecord :: RecordInvalid )
end
end
context " fixed term tenancy length " do
it " Must not be completed if Type of main tenancy is not responded with either Secure or Assured shorthold " do
expect {
CaseLog . create! ( tenancy_type : " Other " ,
fixed_term_tenancy : 10 )
} . to raise_error ( ActiveRecord :: RecordInvalid )
end
it " Must be completed and between 2 and 99 if type of tenancy is Assured shorthold " do
expect {
CaseLog . create! ( tenancy_type : " Fixed term – Assured Shorthold Tenancy (AST) " ,
fixed_term_tenancy : 1 )
} . to raise_error ( ActiveRecord :: RecordInvalid )
expect {
CaseLog . create! ( tenancy_type : " Fixed term – Assured Shorthold Tenancy (AST) " ,
fixed_term_tenancy : nil )
} . to raise_error ( ActiveRecord :: RecordInvalid )
expect {
CaseLog . create! ( tenancy_type : " Fixed term – Assured Shorthold Tenancy (AST) " ,
fixed_term_tenancy : 2 )
} . not_to raise_error
end
it " Must be empty or between 2 and 99 if type of tenancy is Secure " do
expect {
CaseLog . create! ( tenancy_type : " Fixed term – Secure " ,
fixed_term_tenancy : 1 )
} . to raise_error ( ActiveRecord :: RecordInvalid )
expect {
CaseLog . create! ( tenancy_type : " Fixed term – Secure " ,
fixed_term_tenancy : 100 )
} . to raise_error ( ActiveRecord :: RecordInvalid )
expect {
CaseLog . create! ( tenancy_type : " Fixed term – Secure " ,
fixed_term_tenancy : nil )
} . not_to raise_error
expect {
CaseLog . create! ( tenancy_type : " Fixed term – Secure " ,
fixed_term_tenancy : 2 )
} . not_to raise_error
end
end
end
describe " status " do