spec/cocoa/nsindexpath_spec.rb in sugarcube-2.12.3 vs spec/cocoa/nsindexpath_spec.rb in sugarcube-3.0.0
- old
+ new
@@ -9,6 +9,18 @@
a, b = NSIndexPath.indexPathWithIndex(1).indexPathByAddingIndex(3)
a.should == 1
b.should == 3
end
+ it 'should support indexPathForRow(inSection:)' do
+ path = NSIndexPath.indexPathForRow(1, inSection: 3).to_a
+ path[0].should == 3
+ path[1].should == 1
+ end
+
+ it 'should support indexPathForItem(inSection:)' do
+ path = NSIndexPath.indexPathForItem(1, inSection: 3).to_a
+ path[0].should == 3
+ path[1].should == 1
+ end
+
end