Sha256: 257fee1805fdb38529ad990dc6b0dffd6a058e16a14e1ffb4232665c94ff330f
Contents?: true
Size: 483 Bytes
Versions: 9
Compression:
Stored size: 483 Bytes
Contents
require_relative '../../helper' describe Tk::Tile::Separator do it 'initializes' do instance = Tk::Tile::Separator.new instance.class.should == Tk::Tile::Separator instance.tk_parent.should == Tk.root end it 'sets orientation' do s = Tk::Tile::Separator.new s.orient.should == :horizontal s.orient :vertical s.orient.should == :vertical end it 'sets identify' do s = Tk::Tile::Separator.new s.identify(0,0).should == true end end
Version data entries
9 entries across 9 versions & 1 rubygems