Sha256: 979f1a2e9e6d55501b146a4ec7c99a480fe85f4b92ac57329f4d2d5cb2e7ab70
Contents?: true
Size: 976 Bytes
Versions: 31
Compression:
Stored size: 976 Bytes
Contents
describe 'Device helpers' do before do @layout = MK::Layout.new end it 'should have device helpers' do @layout.context({}) do @layout.iphone?.should == true @layout.iphone4?.should == true @layout.iphone35?.should == false @layout.ipad?.should == false @layout.retina?.should == true end end it 'should have device (iphone do end) helpers' do @layout.context({}) do @check = false @layout.iphone do @check = true end @check.should == true @check = false @layout.iphone4 do @check = true end @check.should == true @check = false @layout.iphone35 do @check = true end @check.should == false @check = false @layout.ipad do @check = true end @check.should == false @check = false @layout.retina do @check = true end @check.should == true end end end
Version data entries
31 entries across 31 versions & 1 rubygems