我是 ruby 和 ruby on rails 的新手。如何存根类中的属性?
class User < PresentationModel
...
attr_accessor :_vendor
_vendor 在我的数据库中,包含三列:ID、短名称、类型。我怎样才能只在 rspec 中存根这个属性?
像这样的东西?
@vendor = mock_model(vendor, :ID=> 12, :shortname => 'testBLA', :type => 1)
干杯