目前的元素,我有這個測試: 規格/功能/ cardx/cardx_spec.rb it 'can edit cardx with the form' do
product = FactoryGirl.create(:product)
store = FactoryGirl.create(:store)
click_link(class: 'link-record-ed
我有一個規範,我覺得應該沒有問題,但我相信,因爲它是一個嵌套的資源,它可能會拋出我的請求。我在Ruby 2.3.3中使用Rails 4.2。這是怎麼回事?我知道這是一個有效的途徑,因爲當它出現時,我打rake routes 的routes.rb scope '/organizations/:organization_id' do
get 'dashboard', to: 'projec
我剛剛在Rails 5中開始了一個新項目,(我的第一個,雖然我在Rails 4.x中有幾個項目),並且在控制器規格方面有問題。 describe RequestsController, :type => :controller do
it "receives new request" do
post :accept_request, my_params
end
我正在編寫一個測試API,它應該從GET請求中發送來自數據庫(PostreSQL)的信息。 但是,我的RSpec GET請求拒絕返回任何值。 這是測試: describe FullTextController do
context 'when doing a simple search', :type => :request do
it 'return the correct
我使用rails v5.1.0和rspec-rails 3.5.2開發一個Rails引擎的路線。 我有一個簡單的功能規格: require "rails_helper"
module MyEngineName
RSpec.feature "Some Feature", type: :feature do
it "user can navigate to page and b