Skip to content

Commit f51ea06

Browse files
committed
Remove skips from record controller tests
Why these changes are being introduced: There were three record controller tests that had to be skipped due to a data reload that was in process. That reload, which was related to the access type values, is now complete, and the corresponding UI code has been updated, so these tests will pass again. Relevant ticket(s): * [GDT-252](https://mitlibraries.atlassian.net/browse/GDT-252) How this addresses that need: This removes the skip statements from the tests in question, so they will run again. Side effects of this change: None.
1 parent 84d9194 commit f51ea06

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/controllers/record_controller_test.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ def setup
5555
end
5656

5757
test 'access button displays for freely accessible data' do
58-
skip("DataEng has changed access type labels and is currently reloading dev1 as of 3/28 at 12:20pm.")
5958
gis_record_id = 'gismit:CAMBRIDGEMEMPOLES09'
6059
VCR.use_cassette('gis record mit free',
6160
allow_playback_repeats: true,
@@ -67,7 +66,6 @@ def setup
6766
end
6867

6968
test 'access button displays for data requiring MIT auth' do
70-
skip("DataEng has changed access type labels and is currently reloading dev1 as of 3/28 at 12:20pm.")
7169
gis_record_id = 'gismit:us_ma_boston_g47parcels_2018'
7270
VCR.use_cassette('gis record mit auth',
7371
allow_playback_repeats: true,
@@ -79,7 +77,6 @@ def setup
7977
end
8078

8179
test 'access button displays for non-MIT GIS records' do
82-
skip("DataEng has changed access type labels and is currently reloading dev1 as of 3/28 at 12:20pm.")
8380
gis_record_id = 'gisogm:edu.stanford.purl:be6ef8cd8ac5'
8481
VCR.use_cassette('gis record elsewhere',
8582
allow_playback_repeats: true,

0 commit comments

Comments
 (0)