summaryrefslogtreecommitdiff
path: root/spec/lib/github/import/note_spec.rb
blob: fcdccd9e09759333257618f7ec8a01df408c0e86 (plain)
1
2
3
4
5
6
7
8
9
require 'spec_helper'

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