Sha256: 348b8733b9e29256b861dc11951469c15ef6317e6d32bb55648ecd45f5807791

Contents?: true

Size: 762 Bytes

Versions: 14

Compression:

Stored size: 762 Bytes

Contents

require 'spec_helper'

describe Unparser::Buffer, '#content' do
  subject { object.content }

  let(:object) { described_class.new }

  shared_examples_for 'buffer content' do
    it 'contains expected content' do
      should eql(expected_content)
    end

    it { should be_frozen }

    it 'returns fresh string copies' do
      first  = object.content
      second = object.content
      expect(first).to eql(second)
      expect(first).not_to be(second)
    end
  end

  context 'with empty buffer' do
    let(:expected_content) { '' }

    it_should_behave_like 'buffer content'
  end

  context 'with filled buffer' do
    before do
      object.append('foo')
    end

    let(:expected_content) { 'foo' }

    it_behaves_like 'buffer content'
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
unparser-0.4.8 spec/unit/unparser/buffer/content_spec.rb
unparser-0.4.7 spec/unit/unparser/buffer/content_spec.rb
unparser-0.4.6 spec/unit/unparser/buffer/content_spec.rb
unparser-0.4.5 spec/unit/unparser/buffer/content_spec.rb
unparser-0.4.4 spec/unit/unparser/buffer/content_spec.rb
unparser-0.4.3 spec/unit/unparser/buffer/content_spec.rb
unparser-0.4.2 spec/unit/unparser/buffer/content_spec.rb
unparser-0.4.1 spec/unit/unparser/buffer/content_spec.rb
unparser-0.4.0 spec/unit/unparser/buffer/content_spec.rb
unparser-0.3.0 spec/unit/unparser/buffer/content_spec.rb
unparser-0.2.8 spec/unit/unparser/buffer/content_spec.rb
unparser-0.2.7 spec/unit/unparser/buffer/content_spec.rb
unparser-0.2.6 spec/unit/unparser/buffer/content_spec.rb
unparser-0.2.5 spec/unit/unparser/buffer/content_spec.rb