24 lines
795 B
Ruby
24 lines
795 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
require Rails.root.join('db', 'migrate', '20200107172020_add_timestamp_softwarelicensespolicy.rb')
|
||
|
|
||
|
describe AddTimestampSoftwarelicensespolicy, :migration do
|
||
|
let(:software_licenses_policy) { table(:software_license_policies) }
|
||
|
let(:projects) { table(:projects) }
|
||
|
let(:licenses) { table(:software_licenses) }
|
||
|
|
||
|
before do
|
||
|
projects.create!(name: 'gitlab', path: 'gitlab-org/gitlab-ce', namespace_id: 1)
|
||
|
licenses.create!(name: 'MIT')
|
||
|
software_licenses_policy.create!(project_id: projects.first.id, software_license_id: licenses.first.id)
|
||
|
end
|
||
|
|
||
|
it 'creates timestamps' do
|
||
|
migrate!
|
||
|
|
||
|
expect(software_licenses_policy.first.created_at).to be_nil
|
||
|
expect(software_licenses_policy.first.updated_at).to be_nil
|
||
|
end
|
||
|
end
|