Sha256: c2f75541a3b4d195c7473326b975b67714aefa883ffc477a05546e1cff7c9f89

Contents?: true

Size: 1.29 KB

Versions: 9

Compression:

Stored size: 1.29 KB

Contents

# coding: utf-8

require 'spec_helper'

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

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

  context 'with rows' do
    let(:table) { TTY::Table.new rows }

    it 'displays table without styling' do
      expect(renderer.render).to eq unindent(<<-EOS)
        a1 a2 a3
        b1 b2 b3
      EOS
    end
  end

  context 'with header and rows' do
    it 'displays table with header' do
      expect(renderer.render).to eq unindent(<<-EOS)
        h1 h2 h3
        a1 a2 a3
        b1 b2 b3
      EOS
    end
  end

  context 'with short header' do
    let(:header) { ['h1', 'h2'] }
    let(:rows)   { [['aaa1', 'a2'], ['b1', 'bb1']] }

    it 'displays table according to widths' do
      expect(renderer.render).to eq unindent(<<-EOS)
        h1   h2 
        aaa1 a2 
        b1   bb1
      EOS
    end
  end

  context 'with long header' do
    let(:header)  { ['header1', 'header2', 'header3'] }

    it 'header greater than row sizes' do
      expect(renderer.render).to eq unindent(<<-EOS)
        header1 header2 header3
        a1      a2      a3     
        b1      b2      b3     
      EOS
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

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