首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Rspec不识别任何RSpec::Matcher和RSpec::Core的方法

Rspec不识别任何RSpec::Matcher和RSpec::Core的方法
EN

Stack Overflow用户
提问于 2013-08-08 18:07:05
回答 1查看 2.5K关注 0票数 1

我花了4天时间试图正确安装Rails,但我有一个大问题。我第一次使用Linux (对我来说更合适),但在遇到问题后,我使用了windows。令我惊讶的是,我在Windows上也有同样的问题,所以我想我已经禁止了一些东西。如果我试图为模型加载一个带有小表单的页面,它将显示一个错误,该错误如下:

代码语言:javascript
复制
Unable to autoload constant ReservationsController, expected ...../app/controllers/reservations_controller.rb to define it

此外,如果我尝试使用rspec对模型执行测试,则会收到以下类型的许多错误:

代码语言:javascript
复制
$ rspec spec/models/reservation_spec.rb 
FFFFF

Failures:

  1) Reservation Fields 
     Failure/Error: it{ should have_fields( :from_date ).of_type( Date ) }
     NoMethodError:
       undefined method `of_type' for #<RSpec::Matchers::BuiltIn::Has:0x915ebc8>
     # ./spec/models/reservation_spec.rb:7:in `block (3 levels) in <top (required)>'

  2) Reservation Fields 
     Failure/Error: it{ should have_fields( :price ).of_type( Float ) }
     NoMethodError:
       undefined method `of_type' for #<RSpec::Matchers::BuiltIn::Has:0x9423cc8>
     # ./spec/models/reservation_spec.rb:10:in `block (3 levels) in <top (required)>'

  3) Reservation Fields 
     Failure/Error: it{ should have_fields( :room ).of_type( String ) }
     NoMethodError:
       undefined method `of_type' for #<RSpec::Matchers::BuiltIn::Has:0x94d5bbc>
     # ./spec/models/reservation_spec.rb:11:in `block (3 levels) in <top (required)>'

  4) Reservation Fields 
     Failure/Error: it{ should have_fields( :until_date ).of_type( Date ) }
     NoMethodError:
       undefined method `of_type' for #<RSpec::Matchers::BuiltIn::Has:0x952cb60>
     # ./spec/models/reservation_spec.rb:8:in `block (3 levels) in <top (required)>'

  5) Reservation Fields 
     Failure/Error: it{ should have_fields( :number_of_persons ).of_type( Integer ) }
     NoMethodError:
       undefined method `of_type' for #<RSpec::Matchers::BuiltIn::Has:0x957bbc0>
     # ./spec/models/reservation_spec.rb:9:in `block (3 levels) in <top (required)>'

Finished in 0.16437 seconds
5 examples, 5 failures

Failed examples:

rspec ./spec/models/reservation_spec.rb:7 # Reservation Fields 
rspec ./spec/models/reservation_spec.rb:10 # Reservation Fields 
rspec ./spec/models/reservation_spec.rb:11 # Reservation Fields 
rspec ./spec/models/reservation_spec.rb:8 # Reservation Fields 
rspec ./spec/models/reservation_spec.rb:9 # Reservation Fields 

Randomized with seed 18738

安装rails所遵循的步骤如下:

  • 安装Ruby2.0.0。
  • 安装Git。
  • 安装Rails (遵循此页面http://docs.mongodb.org/ecosystem/tutorial/getting-started-with-ruby-on-rails-3/)。
  • 安装MongoDB (遵循此页面http://docs.mongodb.org/manual/tutorial/install-mongodb-on-windows/)。
  • 安装mongoid (添加到Gemfile并使用bundle install)。
  • 安装rspec (添加到Gemfile并使用包安装)。
  • 执行: rails生成rspec:install

我使用的主要文件如下:

Gemfile

代码语言:javascript
复制
source 'https://rubygems.org'
require 'mongo'
source 'http://gemcutter.org'

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

gem "rspec-rails", :group => [:development, :test]
group :test do
  gem 'database_cleaner'
end

gem 'json',         '~> 1.8.0'  # Gem to support json
gem 'haml',         '~> 4.0.3'  # Gem to support haml views

gem 'mongo',        '~> 1.9.1'  # Gem to use mongodb
gem 'mongoid', git: 'https://github.com/mongoid/mongoid.git'

gem 'rake',         '~> 10.1.0' # Gem to use rake (rspec and cucumber)
gem 'cucumber',     '~> 1.3.5'  # Gem to test with cucumber
gem 'capybara',     '~> 2.1.0'  # Gem to use capybara in cucumber tests
gem 'wait_for',     '~> 0.1.1'  # Gem to wait for an apparition in cucumber tests
gem 'factory_girl', '~> 4.2.0'  # Gem to create examples data

group :assets do
  gem 'sass-rails',   '~> 4.0.0'
  gem 'coffee-rails', '~> 4.0.0'
  gem 'uglifier',     '~> 2.1.2'
end

mongoid.yml

代码语言:javascript
复制
development:
  sessions:
    default:
      database: hotel_development
      hosts:
        - localhost:27017
      options:
  options:
test:
  sessions:
    default:
      database: hotel_test
      hosts:
        - localhost:27017
      options:
        consistency: :strong
        max_retries: 1
        retry_interval: 0

mongo.rb

代码语言:javascript
复制
MongoMapper.connection = Mongo::Connection.new('localhost', 27017)
MongoMapper.database = "#myapp-#{Rails.env}"

if defined?(PhusionPassenger)
  PhusionPassenger.on_event(:starting_worker_process) do |forked|
    MongoMapper.connection.connect if forked
  end
end

reservation.rb

代码语言:javascript
复制
class Reservation
  include Mongoid::Document

  field :from_date, type: Date
  field :until_date, type: Date
  field :number_of_persons, type: Integer
  field :price, type: Float
  field :room, type: String

  has_one :client
end

reservations_controller.rb

代码语言:javascript
复制
class ReservationsControlller < ApplicationController
  def show
    @user = User.find( params[:id] )
  end

  def new
    @user = User.new
  end

  def create
    @user = User.new( params[:user] )
    if @user.save
      redirect_to @user
    else
      render 'new'
    end
  end
end

routes.rb

代码语言:javascript
复制
Hotel::Application.routes.draw do
  resources :reservations, only: [:show, :new, :create]
end

reservation_spec.rb

代码语言:javascript
复制
require 'spec_helper'

describe Reservation do
  subject{ @reservation }

  describe "Fields" do
    it{ should have_field( :from_date ).of_type( Date ) }
    it{ should have_field( :until_date ).of_type( Date ) }
    it{ should have_field( :number_of_persons ).of_type( Integer ) }
    it{ should have_field( :price ).of_type( Float ) }
    it{ should have_field( :room ).of_type( String ) }
  end
end

如果你需要另一份文件,我可以毫无问题地放进去。

提前谢谢。

编辑:为预订模型添加了rspec测试。EDIT2:我已经包含了rspec测试的输出。

EN

回答 1

Stack Overflow用户

发布于 2013-08-08 18:18:03

您的l类名中有三个ReservationsControlller,这就是为什么Rails在加载控制器文件时没有找到预期的控制器类的原因。至于rspec问题,也许您缺少一个附带的describe,但请共享您的规范,以便我们可以看到正在发生的事情。

更新:查看您的规范,您已经将subject设置为@reservation,但尚未初始化@reservation,因此它的值将是nil。此外,由于您使用类Reservation作为外部describe的参数,因此在没有subject调用的情况下,主题将隐式为Reservation.new

至于你现在所犯的错误,我不确定。of_type似乎是在mongoid-rspec中定义的,您还没有显式地包含它,但是您没有从have_fields那里得到一个错误,我认为它也是在那里定义的。但是,我不认为have_fields是在mongoid-rspec源代码中定义的,所以可能是来自其他地方。无论如何,我会尝试添加创业板,看看这是否解决了问题。

票数 6
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/18132972

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档