Skip to content

Commit bef5de5

Browse files
committed
Add now required district_name and district_nces_id to tests
1 parent f059d13 commit bef5de5

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

spec/jobs/school_import_job_spec.rb

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
municipality: 'Springfield',
1919
country_code: 'US',
2020
owner_email: 'owner1@example.com',
21+
district_name: 'Some District',
2122
district_nces_id: '010000000001'
2223
},
2324
{
@@ -26,7 +27,9 @@
2627
address_line_1: '456 Oak Ave',
2728
municipality: 'Boston',
2829
country_code: 'US',
29-
owner_email: 'owner2@example.com'
30+
owner_email: 'owner2@example.com',
31+
district_name: 'Other District',
32+
district_nces_id: '010000000002'
3033
}
3134
]
3235
end
@@ -125,7 +128,9 @@
125128
'address_line_1' => '123 Main St',
126129
'municipality' => 'Springfield',
127130
'country_code' => 'us',
128-
'owner_email' => 'owner1@example.com'
131+
'owner_email' => 'owner1@example.com',
132+
'district_name' => 'Some District',
133+
'district_nces_id' => '010000000001'
129134
}
130135
]
131136
end

0 commit comments

Comments
 (0)