Sha256: 7b395d69ce2756245ea56b702ad7c4ddb2b843b6ffaa712945230ca702118407
Contents?: true
Size: 1.45 KB
Versions: 3
Compression:
Stored size: 1.45 KB
Contents
# encoding: utf-8 require 'spec_helper' describe TTY::Table::Border::Unicode, '#rendering' do subject { described_class.new(column_widths) } context 'with empty row' do let(:row) { TTY::Table::Row.new([]) } let(:column_widths) { [] } it 'draws top line' do expect(subject.top_line).to eq("┌┐") end it 'draws middle line' do expect(subject.separator).to eq("├┤") end it 'draw bottom line' do expect(subject.bottom_line).to eq("└┘") end it 'draws row line' do expect(subject.row_line(row)).to eq("││") end end context 'with row' do let(:row) { TTY::Table::Row.new(['a1', 'a2', 'a3']) } let(:column_widths) { [2,2,2] } it 'draws top line' do expect(subject.top_line).to eq("┌──┬──┬──┐") end it 'draw middle line' do expect(subject.separator).to eq("├──┼──┼──┤") end it 'draw bottom line' do expect(subject.bottom_line).to eq("└──┴──┴──┘") end it 'draws row line' do expect(subject.row_line(row)).to eq("│a1│a2│a3│") end end context 'with multiline row' do let(:row) { TTY::Table::Row.new(["a1\nb1\nc1", 'a2', 'a3']) } let(:column_widths) { [2,2,2] } it 'draws row line' do expect(subject.row_line(row)).to eq <<-EOS.normalize │a1│a2│a3│ │b1│ │ │ │c1│ │ │ EOS end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tty-0.1.2 | spec/tty/table/border/unicode/rendering_spec.rb |
tty-0.1.1 | spec/tty/table/border/unicode/rendering_spec.rb |
tty-0.1.0 | spec/tty/table/border/unicode/rendering_spec.rb |