RR mock.instance_of 和 Mocha any_instance 之间的区别
我有以下 rspec 代码: require 'spec_helper' require 'mocha' require 'rr' describe ProjectsController, "creating a new project" do integrate_…
无法在 IronRuby 中加载 gem
我已经删除了所有环境变量和 ruby/ironruby 目录并从头开始重新安装。然后我通过igem安装了mocha。这是我的输出。 $ ir IronRuby 0.9.1.0 on .NET…
在 Rails 2.3.3 项目中安装 Mocha 0.9.7
我使用以下方法安装了 Mocha 0.9.7 Rails 插件:( $ script/plugin install git://github.com/floehopper/mocha.git 只需按照 http://mocha.rubyforg…
Mocha:如何设置对实例方法的期望?
假设这个 ruby 代码: class User def self.failed_login!(email) user = User.find_by_email(email) if user user.failed_login_count = user.fa…
从工厂女孩返回模拟对象
我在 JRuby Rails 应用程序中使用 Mocha 和 Factory_girl。 当我调用工厂时,我想返回已经完成一些模拟的对象。 这是我正在尝试做的事情的代码片段。 …