0

有谁知道如何使用带有 rspec 的 gem 在应用程序中测试 gem 的控制器?我试过http://codingdaily.wordpress.com/2011/01/14/test-a-gem-with-the-rails-3-stack/http://say26.com/rspec-testing-controllers- outside-of-a-rails-application没有成功。

我在这样的 gem 中有一个控制器:

module mygem
 class PostsController < ::ApplicationController
  def index
    @posts = Posts.find(:all)
    @other_var = 10        
  end
 end
end

我想在我的应用程序中进行测试,例如 spec/controllers/posts_controller_spec.rb

describe PostsController do
  describe "index" do

    it "has posts" do
      get :index
      assigns(:posts).should_not be_nil
    end

    it "has other var" do
      get :index
      assert_equal(10, assigns(:other_var))
    end

  end
end

还有我的 spec_helper.rb

# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= 'test'

require File.expand_path("../../config/environment", __FILE__)    
require 'rspec/rails'
require 'rspec/autorun'

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }

RSpec.configure do |config|

end

我知道 rspec 并不是真的为此,想法或替代方案也会有所帮助。

4

2 回答 2

0

宝石就是宝石,应用程序就是应用程序。它们是不同的东西。

我认为将 gem 的测试混合到应用程序中并不是一个好习惯。

通常,您不需要测试 gem,因为它们通常都经过了很好的测试。如果您真的想这样做或者 gem 缺乏测试,请 fork gem 并将其拉入本地,然后打开其测试文件并添加您的测试文件。然后您可以将其推回以改进此 gem 或最终生成您自己的 gem 版本。

如果您正在编写自己的 gem,请将测试放在 gem 中而不是 app 中。

如果您想测试 gem 添加到您的应用程序中的一些功能,您可以测试集成效果,但不需要单元测试。

于 2013-06-21T15:07:21.707 回答
0

好的,我现在感觉很愚蠢,我只需要将 gem 命名空间添加到控制器中。所以

describe PostsController do
...
end

变成

describe mygem::PostsController do
...
end
于 2013-06-21T20:56:46.893 回答