summaryrefslogtreecommitdiff
path: root/spec/lib/github/import/note_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/github/import/note_spec.rb')
-rw-r--r--spec/lib/github/import/note_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/lib/github/import/note_spec.rb b/spec/lib/github/import/note_spec.rb
new file mode 100644
index 00000000000..fcdccd9e097
--- /dev/null
+++ b/spec/lib/github/import/note_spec.rb
@@ -0,0 +1,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