100

我正在为我在 Ruby on Rails 应用程序中的模型编写 Rspec 测试。我在启动 'rspec spec' 时收到此错误

command:
/spec/models/client_spec.rb:4:in `<top (required)>': uninitialized constant Client (NameError)

我使用 Rails 4.0.0 和 Ruby 2.0.0

这是我的client_spec.rb:

require 'spec_helper'


describe Client do

  it 'is invalid without first_name', :focus => true do
     client = Client.new
     client.should_not be_valid
  end
end

和 Gemfile:

source 'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0.rc1'

# Use sqlite3 as the database for Active Record
gem 'sqlite3'

# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0.rc1'

# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'

# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'

# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'

# Turbolinks makes following links in your web application faster. Read more: 
gem 'turbolinks'

gem 'jbuilder', '~> 1.0.1'

group :development do
  gem 'rspec-rails'
end

group :doc do
  # bundle exec rake doc:rails generates the API under doc/api.
  gem 'sdoc', require: false
end

group :test do
  gem 'rspec-rails'
  gem 'factory_girl_rails'
  gem 'database_cleaner'
end

最后是 client.rb(ROR 模型和类):

class Client < ActiveRecord::Base

  has_many :cars
  has_many :orders
  has_one :client_status
  has_one :discount_plan, through: :client_status

  validates :email, format: { with: /^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})\z/, :message => "Only emails allowed", :multiline => true }
  validates :email, presence: true, if: "phone.nil?"
  #validates :phone, presence: true, if: "email.nil?"
  validates :last_name, :first_name, presence: true
  validates :last_name, :first_name, length: {
      minimum: 2,
      maximum: 500,
      wrong_length: "Invalid length",
      too_long: "%{count} characters is the maximum allowed",
      too_short: "must have at least %{count} characters"
     }
end

如果它对我的 spec_helper.rb 文件有用:

# This file was generated by the `rspec --init` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# Require this file using `require "spec_helper"` to ensure that it is only
# loaded once.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'

  #config.use_transactional_fixtures = false

  config.before(:suite) do
    DatabaseCleaner.strategy = :transaction
    DatabaseCleaner.clean_with(:truncation)
  end

   config.before(:each) do
     DatabaseCleaner.start
   end

   config.after(:each) do
     DatabaseCleaner.clean
   end

  end
4

8 回答 8

166

在 rails 4.x 及更高版本(rspec-rails 3.1.0 及更高版本)中,将其添加到每个规范文件的顶部

require "rails_helper"  # this

不是

require "spec_helper"   # not this
于 2015-01-14T01:17:28.447 回答
93

您的spec_helper文件缺少一些重要的命令。具体来说,它不包括 config/environment 和 initializing rspec-rails

您可以将以下行添加到spec/spec_helper.rb文件的开头

ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'rspec/autorun'

或者你可以运行

rails generate rspec:install

spec_helper用生成的用于rspec-rails.

于 2013-07-07T01:53:23.090 回答
20

您可能还想添加--require rails_helper您的.rspec文件,使其看起来像这样。

--color
--require spec_helper
--require rails_helper

在此之后,您不需要在所有规范中都需要 rails_helper 。

于 2015-11-22T14:49:15.860 回答
8

我正在使用Rails 5.0.0.1。
以下是我解决这个问题的方法。

在您的 Gemfile 中,请添加 -> gem 'rspec-rails', ">= 2.0.0.beta"

像这样,

group :development, :test do
  gem 'rspec-rails', ">= 2.0.0.beta"
end

原因:如果没有添加rspec-rails,执行rspec命令时会产生这个错误-> “cannot load such file -- rails_helper”

现在,在终端上执行此命令。

捆绑安装

一旦 bundle 命令运行良好,执行 rails generate。像这样,

rails 生成 rspec:install

原因:此命令将创建一个新的 .rspec(提示时覆盖),spec/rails_helper.rb 和 spec/spec_helper.rb

现在,在这一点上,rspec 应该几乎可以正常运行。
但是,如果您遇到在模型中找不到的错误,例如无法加载此类文件 - 想法,请尝试将其添加到您的 spec/spec_helper.rb

require 'rubygems'
ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)

原因:似乎 spec_helper 没有加载 Rails 环境。我们需要它。

希望这可以帮助!

于 2016-11-29T07:41:16.183 回答
4

如果此问题下的其他答案不起作用,请尝试:

  • 检查文件名或类名中是否有任何拼写错误(它们应该匹配)

否则,

  • 检查您的config/environment/test.rb文件,看看是否有config.eager_load = false,将其设置为true.

您应该检查书面订单,因为您不想解决拼写错误的问题。

于 2018-12-06T07:56:11.657 回答
4

上面的答案都没有让我很满意,或者对需要放置代码行的位置不够明确。我正在使用 rails 6.0.2 和 rspec-rails 4.1.0 并找到了两个解决问题的选项。

  1. 将该行添加require 'rails_helper'到您需要运行的每个规范文件的顶部。

  2. 将该行添加require 'rails_helper'到文件的顶部,spec/spec_helper.rb以使 rails 帮助文件在所有测试中都可用。

于 2021-03-16T08:34:32.493 回答
2

自从创建此线程以来,事情发生了一些变化,我也遇到了uninitialized constant ClassName (NameError)使用 Ruby 2.1、Rails 4.2、rspec-rails 3.3 的错误。

我已经解决了阅读 rspec-rails gem 文档的问题:

https://github.com/rspec/rspec-rails#model-specs

它证实了 Swards 关于不再需要“rails_helper”而不是“spec_helper”的说法。

此外,我的模型规范看起来更像是 gem docs 中的规范

RSpec.describe Url, :type => :model do
    it 'is invalid without first_name', :focus => true do
        client = Client.new
        client.should_not be_valid
    end
end
于 2015-11-09T15:46:47.523 回答
1

在您的应用程序中定义的工厂文件夹

FactoryBot.define do
  factory :user_params , :class => 'User' do
    username 'Alagesan'
    password '$1234@..'

  end
end

您的控制器 RSpec 文件:

it 'valid params' do
  post :register, params: {:user => user_params } 
end
于 2018-04-05T06:08:46.027 回答