require 'test_helper' describe Fixnum do describe '#columns' do it 'returns the width if the value is in range' do IO.console.stub :winsize, [25, 60] do 1.columns.must_equal(5) end end end end module Vedeu describe Grid do describe '.columns' do it 'raises an exception if the value is less than 1' do proc { Grid.columns(0) }.must_raise(OutOfRange) end it 'raises an exception if the value is greater than 12' do proc { Grid.columns(13) }.must_raise(OutOfRange) end it 'returns the width if the value is in range' do IO.console.stub :winsize, [25, 80] do Grid.columns(7).must_equal(42) end end end end end