Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220715163254_update_notes_in_past_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58e6cabc1291b4abc48d03b9fbad4fe1dee4377c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'spec_helper'

require_migration!

RSpec.describe UpdateNotesInPast, :migration do
  let(:notes) { table(:notes) }

  it 'updates created_at when it is too much in the past' do
    notes.create!(id: 10, note: 'note', created_at: '2009-06-01')
    notes.create!(id: 11, note: 'note', created_at: '1970-01-01')
    notes.create!(id: 12, note: 'note', created_at: '1600-06-01')

    migrate!

    expect(notes.all).to contain_exactly(
      an_object_having_attributes(id: 10, created_at: DateTime.parse('2009-06-01')),
      an_object_having_attributes(id: 11, created_at: DateTime.parse('1970-01-01')),
      an_object_having_attributes(id: 12, created_at: DateTime.parse('1970-01-01'))
    )
  end
end