using FluentAssertions; using NUnit.Framework; using NzbDrone.Core.Datastore.Migration; using NzbDrone.Core.Datastore.Migration.Framework; using NzbDrone.Core.Test.Framework; namespace NzbDrone.Core.Test.Datastore.Migration { [Ignore("not sure for now")] [TestFixture] public class rename_quality_profiles_add_upgrade_allowedFixture : MigrationTest { [Test] public void should_handle_injected_radarr_migration() { var dbBefore = WithTestDb(new MigrationContext(MigrationType, 110)); // Ensure 111 isn't applied dbBefore.GetDirectDataMapper().Query("INSERT INTO \"VersionInfo\" (\"Version\", \"AppliedOn\", \"Description\") VALUES (111, '2018-12-24T18:21:07', 'remove_bitmetv')"); var dbAfter = WithMigrationTestDb(); var result = dbAfter.QueryScalar("SELECT COUNT(*) FROM \"VersionInfo\" WHERE \"Description\" = 'remove_bitmetv'"); result.Should().Be(0); } } }