spec/ios/relative_layout.spec.rb in motion-kit-0.11.1 vs spec/ios/relative_layout.spec.rb in motion-kit-0.11.2
- old
+ new
@@ -11,21 +11,21 @@
it "with origin x = y = 0" do
@subject.get(:test).frame.origin.x.should == 0
@subject.get(:test).frame.origin.y.should == 0
end
it "with frame w = h = 100" do
- @subject.get(:test).frame.size.width.should == 320 # how do I best set this to 100% of the screen, in case future simulators have higher resolution?
+ @subject.get(:test).frame.size.width.should == UIScreen.mainScreen.bounds.size.width
@subject.get(:test).frame.size.height.should == 100
end
end
describe "should have a test2 view below test view" do
it "with origin x = 0, y = 100" do
@subject.get(:test2).frame.origin.x.should == 0
@subject.get(:test2).frame.origin.y.should == 100
end
it "with frame w = 100, h = 50" do
- @subject.get(:test2).frame.size.width.should == 320 # how do I best set this to 100% of the screen, in case future simulators have higher resolution?
+ @subject.get(:test2).frame.size.width.should == UIScreen.mainScreen.bounds.size.width
@subject.get(:test2).frame.size.height.should == 50
end
end
end
\ No newline at end of file