2010-10-10 72 views

回答

6

Mocha是一个相当不错的模拟和红宝石存根库。

看看example usages

def test_mocking_a_class_method 
    product = Product.new 
    Product.expects(:find).with(1).returns(product) 
    assert_equal product, Product.find(1) 
end