feat: Update demographics file with housing statuses. Create housing class. Update survey_item_values.rb to parse housing info. Update cleaner to output housing info.

This commit is contained in:
rebuilt 2025-03-27 15:20:40 -07:00
parent b5b4c3b9a6
commit 3a5a368a35
9 changed files with 66 additions and 14 deletions

View file

@ -1,4 +1,8 @@
FactoryBot.define do
factory :housing do
designation { "MyString" }
end
factory :parent do
response_id { "MyString" }
number_of_children { 1 }

View file

@ -0,0 +1,5 @@
require 'rails_helper'
RSpec.describe Housing, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end