Sha256: a4001ece917841e3ad2d81424e4301e5f477ca8f60238a5d0a782e75b95f7e08

Contents?: true

Size: 1.02 KB

Versions: 10

Compression:

Stored size: 1.02 KB

Contents

# coding: utf-8

require 'spec_helper'

RSpec.describe TTY::Table::Renderer::Basic, 'indentation' do
  let(:header)  { ['h1', 'h2', 'h3'] }
  let(:rows)    { [['a1', 'a2', 'a3'], ['b1', 'b2', 'b3']] }
  let(:table)   { TTY::Table.new(header, rows) }
  let(:options) { {indent: indent } }

  subject(:renderer) { described_class.new(table, options)}

  context 'when default' do
    let(:indent) { 0 }

    it 'indents by value' do
      expect(renderer.render).to eql <<-EOS.chomp
h1 h2 h3
a1 a2 a3
b1 b2 b3
      EOS
    end
  end

  context 'when custom' do
    let(:indent) { 2 }

    it 'indents by value' do
      expect(renderer.render).to eql <<-EOS.chomp
  h1 h2 h3
  a1 a2 a3
  b1 b2 b3
      EOS
    end
  end

  context 'when changed' do
    let(:indent) { 2 }
    let(:header) { ['h1', 'h2'] }
    let(:rows)   { [['a1', 'a2']] }

    it 'changes indentation and reuses renderer' do
      expect(renderer.render).to eq("  h1 h2\n  a1 a2")
      renderer.indent = 1
      expect(renderer.render).to eq(" h1 h2\n a1 a2")
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tty-table-0.10.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.9.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.8.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.7.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.6.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.5.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.4.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.3.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.2.0 spec/unit/renderer/basic/indentation_spec.rb
tty-table-0.1.0 spec/unit/renderer/basic/indentation_spec.rb