Sha256: 0726819121016b09b88982f066de977464749c28c60b49306d5a319e0fd4d94a

Contents?: true

Size: 1.01 KB

Versions: 3

Compression:

Stored size: 1.01 KB

Contents

# encoding: utf-8

require 'spec_helper'

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

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

  context 'when default' do
    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 each row' do
    it 'indents by value' do
      renderer.border.separator = :each_row
      expect(renderer.render).to eql <<-EOS.chomp
  ┌──┬──┬──┐
  │h1│h2│h3│
  ├──┼──┼──┤
  │a1│a2│a3│
  ├──┼──┼──┤
  │b1│b2│b3│
  └──┴──┴──┘
      EOS
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tty-0.1.2 spec/tty/table/renderer/unicode/indentation_spec.rb
tty-0.1.1 spec/tty/table/renderer/unicode/indentation_spec.rb
tty-0.1.0 spec/tty/table/renderer/unicode/indentation_spec.rb