युक्ति / रेल_हेलर.बीआर युक्ति / युक्ति_हेलर से कैसे भिन्न है? क्या मुझे इसकी आवश्यकता है?


89

मैं दूसरी बार रेल ट्यूटोरियल कर रहा हूं। जब मैं इसमें प्रवेश करता हूं

rails generate integration_test static_pages

मुझे मिलता है spec/rails_helper.rbऔर spec/spec_helper.rbबदले में बसspec/spec_helper.rb

अब जब मैं अपने परीक्षण चलाता हूं, तो वे लंबे समय तक (अधिक "क्रिया") करते हैं और जब मैंने पिछली बार ऐसा किया था तो उससे भी धीमी थी। मैं सोच रहा हूं कि दोनों फाइलों में क्या अंतर है, और अगर मैंने कुछ गलत किया है। इसके अलावा, क्या rails_helper.rbसब कुछ गड़बड़ किए बिना फ़ाइल से छुटकारा पाने का एक तरीका है ?


आपके परीक्षण उत्पाद का क्या उत्पादन होता है जो उन्होंने पहले नहीं बनाया था? (एक नए प्रश्न में हो सकता है।)
डेव श्विसगुथ

मैं शब्दावली के बारे में निश्चित नहीं हूं, लेकिन अब परीक्षण प्रत्येक मणि के माध्यम से जाते हैं जो मुझे उन चीजों की एक लंबी सूची देता है जो मुझे समझ में नहीं आते हैं, और उसके बाद ही परिणाम दिखाई देता है। इससे पहले, यह सिर्फ परिणाम दिया। मैं इसे यहां कॉपी करूंगा लेकिन यह वास्तव में लंबा है ...
user3417583

यह शायद RSpec 3 deprecations है। यदि आप उन्हें खोज या इस myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3 से नहीं कर सकते , तो उन्हें एक नए प्रश्न में डालें।
डेव श्विसगुथ

1
यह तय हो गया है, मुझे .rspec से हटा देना होगा
user3417583

जवाबों:


128

rspec- रेल 3 उत्पन्न करता है spec_helper.rbऔर rails_helper.rbspec_helper.rbउन स्पेक्स के लिए है जो रेल्स पर निर्भर नहीं करते हैं (जैसे कि लिबास डायरेक्टरी में स्पेक्स के लिए)। rails_helper.rbचश्मा के लिए है जो रेल पर निर्भर करता है (एक रेल परियोजना में, उनमें से अधिकांश या सभी)। rails_helper.rbकी आवश्यकता है spec_helper.rb। तो नहीं, छुटकारा नहीं rails_helper.rb; spec_helper.rbआपके चश्मे में इसकी आवश्यकता है (और नहीं )।

यदि आप चाहते हैं कि आपके गैर-रेल-निर्भर चश्मा लागू करने के लिए कि वे गैर-रेल-निर्भर हैं, और जितना संभव हो उतनी तेज़ी से चलाने के लिए जब आप उन्हें स्वयं चलाते हैं, तो आपको उन लोगों की spec_helper.rbबजाय आवश्यकता हो सकती है rails_helper.rb। लेकिन प्रत्येक हेल्प फ़ाइल में एक सहायक या दूसरे की आवश्यकता के बजाय यह -r rails_helperआपके लिए बहुत सुविधाजनक है .rspec, इसलिए यह एक लोकप्रिय दृष्टिकोण है।

यदि आप स्प्रिंग प्रीलोडर का उपयोग कर रहे हैं, तो प्रत्येक कक्षा को केवल एक बार लोड करने की आवश्यकता होती है, और स्प्रिंग लोड होने पर भी उत्सुकता से कक्षाएं चलती हैं, भले ही आपको केवल एक ही युक्ति की आवश्यकता होती हैspec_helper , इसलिए केवल spec_helperकुछ फ़ाइलों में ही आवश्यकता नहीं है ।

स्रोत: https://www.relishapp.com/rspec/rspec-rails/docs/upgrad#default-helper-files


4
यह बहुत भ्रामक है। मैं एक पीआर जोड़ने जा रहा हूँ rspec- रेल्स को फिर से अपडेट करने के लिए इसे स्पेल करने के लिए जैसा कि आप यहाँ हैं। स्पष्टीकरण के लिए धन्यवाद।
स्टीव

4
Rspec पर शुरू होने वाले लोगों के लिए यह एक बड़ी गड़बड़ है!
एडुआर्डो

1

आप हमेशा अपने सभी कॉन्फिग को spec_helper में जोड़ सकते हैं और केवल उसी हेल्पर int की आवश्यकता होती है जो वह हेल्पर फ़ाइल को रैल करता है।

यह किसी भी तरह से "आदर्श" नहीं है क्योंकि दिन के अंत में, आप मैन्युअल रूप से यह "रिफ्लेक्टर" कर रहे हैं, लेकिन यदि यह वास्तव में आपको परेशान करता है। बस यह पता है कि यह पूरी तरह से आप पर निर्भर करता है कि संरचना कैसे करेंRspec.configure

#rails_helper.rb

require 'spec_helper'

#EMPTY FILE

और बस सभी रेल विशिष्ट सेटअप में लाएँ

# spec_helper.rb

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

require File.expand_path('../config/environment', __dir__)

# Prevent database truncation if the environment is production
abort("The Rails environment is running in production mode!") if Rails.env.production?
require 'rspec/rails'
# Add additional requires below this line. Rails is not loaded until this point!

# Requires supporting ruby files with custom matchers and macros, etc, in
# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
# run as spec files by default. This means that files in spec/support that end
# in _spec.rb will both be required and run as specs, causing the specs to be
# run twice. It is recommended that you do not name files matching this glob to
# end with _spec.rb. You can configure this pattern with the --pattern
# option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
#
# The following line is provided for convenience purposes. It has the downside
# of increasing the boot-up time by auto-requiring all files in the support
# directory. Alternatively, in the individual `*_spec.rb` files, manually
# require only the support files necessary.
#
# Dir[Rails.root.join('spec', 'support', '**', '*.rb')].each { |f| require f }

# Checks for pending migrations and applies them before tests are run.
# If you are not using ActiveRecord, you can remove these lines.
begin
  ActiveRecord::Migration.maintain_test_schema!
rescue ActiveRecord::PendingMigrationError => e
  puts e.to_s.strip
  exit 1
end
RSpec.configure do |config|

... all our config.whatever_your_heart_desires
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.