2

我正在按照本教程http://apionrails.icalialabs.com/book/frontmatter使用 Rails 5.0 创建一个小 API

我正在尝试运行位于的测试,app/config/lib但 RSpec 找不到该测试。

我已经尝试添加config.autoload_paths << Rails.root.join('lib')or config.autoload_paths += %W(#{config.root}/lib)app/config/application.rb.

这是我的代码:

$ /app/config/application.rb

#required files go here, deleted for clarity.

Bundler.require(*Rails.groups)

module MarketPlaceApi
  class Application < Rails::Application

    # don't generate RSpec tests for views and helpers
    config.generators do |g|
      g.test_framework :rspec, fixture: true
      g.fixture_replacement :factory_girl, dir: 'spec/factories'
      g.view_specs false
      g.helper_specs false
      g.stylesheets = false
      g.javascripts = false
      g.helper = false
    end

  config.autoload_paths += %W(#{config.root}/lib)
  end
end

测试

$ app/config/lib/spec/test_spec.rb

require 'spec_helper'

describe ApiConstraints do
  #test goes here
end

如何添加lib文件夹以便 RSpec 运行其中的测试?

提前致谢。

4

1 回答 1

2

RSpec 不会在autoload_paths. 如果你运行rspecrake spec不带参数,RSpecspec默认在目录中查找。如果您想在不同的目录中运行规范,请将该目录rspec作为参数:

rspec app/config/lib/spec

但是,将您的规范保存在目录中是通用约定,与您在andspec中的代码分开,因此我会将您的规范移至. 然后,RSpec 会毫不费力地找到它们。applibspec/lib

于 2016-08-10T11:10:16.770 回答