gitlab-org--gitlab-foss/spec/lib/gitlab/git/blob_snippet_spec.rb

20 lines
474 B
Ruby
Raw Normal View History

2017-01-04 18:43:06 +00:00
# encoding: UTF-8
require "spec_helper"
describe Gitlab::Git::BlobSnippet, seed_helper: true do
describe '#data' do
2017-01-04 18:43:06 +00:00
context 'empty lines' do
let(:snippet) { Gitlab::Git::BlobSnippet.new('master', nil, nil, nil) }
it { expect(snippet.data).to be_nil }
end
context 'present lines' do
2017-02-22 17:46:57 +00:00
let(:snippet) { Gitlab::Git::BlobSnippet.new('master', %w(wow much), 1, 'wow.rb') }
2017-01-04 18:43:06 +00:00
it { expect(snippet.data).to eq("wow\nmuch") }
end
end
end