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

20 lines
469 B
Ruby
Raw Normal View History

2017-01-04 13:43:06 -05:00
# encoding: UTF-8
require "spec_helper"
describe Gitlab::Git::BlobSnippet, :seed_helper do
describe '#data' do
2017-01-04 13:43:06 -05: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 12:46:57 -05:00
let(:snippet) { Gitlab::Git::BlobSnippet.new('master', %w(wow much), 1, 'wow.rb') }
2017-01-04 13:43:06 -05:00
it { expect(snippet.data).to eq("wow\nmuch") }
end
end
end