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

legacy_diff_note_spec.rb « import « github « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c50b46cacb016fd663daeaf652fdffcf2ed9f76 (plain)
1
2
3
4
5
6
7
8
9
require 'spec_helper'

describe Github::Import::LegacyDiffNote do
  describe '#type' do
    it 'returns the original note type' do
      expect(described_class.new.type).to eq('LegacyDiffNote')
    end
  end
end