Skip to content

Commit a83ab42

Browse files
committed
feat: rspec installed
1 parent a560559 commit a83ab42

File tree

5 files changed

+157
-0
lines changed

5 files changed

+157
-0
lines changed

.rspec

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
--color
2+
--warnings
3+
--require spec_helper

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ gem 'bootsnap', '>= 1.4.2', require: false
3131
group :development, :test do
3232
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
3333
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
34+
gem 'rspec-rails', '~>3.0.0'
35+
gem 'factory_bot_rails'
36+
gem 'rails-controller-testing'
3437
end
3538

3639
group :development do

Gemfile.lock

+29
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,13 @@ GEM
6464
byebug (11.0.1)
6565
concurrent-ruby (1.1.5)
6666
crass (1.0.5)
67+
diff-lcs (1.3)
6768
erubi (1.9.0)
69+
factory_bot (5.1.1)
70+
activesupport (>= 4.2.0)
71+
factory_bot_rails (5.1.1)
72+
factory_bot (~> 5.1.0)
73+
railties (>= 4.2.0)
6874
ffi (1.11.1)
6975
globalid (0.4.2)
7076
activesupport (>= 4.2.0)
@@ -113,6 +119,10 @@ GEM
113119
bundler (>= 1.3.0)
114120
railties (= 6.0.0)
115121
sprockets-rails (>= 2.0.0)
122+
rails-controller-testing (1.0.4)
123+
actionpack (>= 5.0.1.x)
124+
actionview (>= 5.0.1.x)
125+
activesupport (>= 5.0.1.x)
116126
rails-dom-testing (2.0.3)
117127
activesupport (>= 4.2.0)
118128
nokogiri (>= 1.6)
@@ -128,6 +138,22 @@ GEM
128138
rb-fsevent (0.10.3)
129139
rb-inotify (0.10.0)
130140
ffi (~> 1.0)
141+
rspec-core (3.0.4)
142+
rspec-support (~> 3.0.0)
143+
rspec-expectations (3.0.4)
144+
diff-lcs (>= 1.2.0, < 2.0)
145+
rspec-support (~> 3.0.0)
146+
rspec-mocks (3.0.4)
147+
rspec-support (~> 3.0.0)
148+
rspec-rails (3.0.2)
149+
actionpack (>= 3.0)
150+
activesupport (>= 3.0)
151+
railties (>= 3.0)
152+
rspec-core (~> 3.0.0)
153+
rspec-expectations (~> 3.0.0)
154+
rspec-mocks (~> 3.0.0)
155+
rspec-support (~> 3.0.0)
156+
rspec-support (3.0.4)
131157
ruby_dep (1.5.0)
132158
sass (3.7.4)
133159
sass-listen (~> 4.0.0)
@@ -181,10 +207,13 @@ DEPENDENCIES
181207
bcrypt (= 3.1.12)
182208
bootsnap (>= 1.4.2)
183209
byebug
210+
factory_bot_rails
184211
jbuilder (~> 2.7)
185212
listen (>= 3.0.5, < 3.2)
186213
puma (~> 3.11)
187214
rails (~> 6.0.0)
215+
rails-controller-testing
216+
rspec-rails (~> 3.0.0)
188217
sass-rails (~> 5)
189218
spring
190219
spring-watcher-listen (~> 2.0.0)

spec/rails_helper.rb

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# This file is copied to spec/ when you run 'rails generate rspec:install'
2+
ENV["RAILS_ENV"] ||= 'test'
3+
require 'spec_helper'
4+
require File.expand_path("../../config/environment", __FILE__)
5+
require 'rspec/rails'
6+
7+
# Requires supporting ruby files with custom matchers and macros, etc, in
8+
# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
9+
# run as spec files by default. This means that files in spec/support that end
10+
# in _spec.rb will both be required and run as specs, causing the specs to be
11+
# run twice. It is recommended that you do not name files matching this glob to
12+
# end with _spec.rb. You can configure this pattern with the --pattern
13+
# option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
14+
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
15+
16+
# Checks for pending migrations before tests are run.
17+
# If you are not using ActiveRecord, you can remove this line.
18+
ActiveRecord::Migration.maintain_test_schema!
19+
20+
RSpec.configure do |config|
21+
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
22+
config.fixture_path = "#{::Rails.root}/spec/fixtures"
23+
24+
# If you're not using ActiveRecord, or you'd prefer not to run each of your
25+
# examples within a transaction, remove the following line or assign false
26+
# instead of true.
27+
config.use_transactional_fixtures = true
28+
29+
# RSpec Rails can automatically mix in different behaviours to your tests
30+
# based on their file location, for example enabling you to call `get` and
31+
# `post` in specs under `spec/controllers`.
32+
#
33+
# You can disable this behaviour by removing the line below, and instead
34+
# explicitly tag your specs with their type, e.g.:
35+
#
36+
# RSpec.describe UsersController, :type => :controller do
37+
# # ...
38+
# end
39+
#
40+
# The different available types are documented in the features, such as in
41+
# https://relishapp.com/rspec/rspec-rails/docs
42+
config.infer_spec_type_from_file_location!
43+
end

spec/spec_helper.rb

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
2+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3+
# The generated `.rspec` file contains `--require spec_helper` which will cause this
4+
# file to always be loaded, without a need to explicitly require it in any files.
5+
#
6+
# Given that it is always loaded, you are encouraged to keep this file as
7+
# light-weight as possible. Requiring heavyweight dependencies from this file
8+
# will add to the boot time of your test suite on EVERY test run, even for an
9+
# individual file that may not need all of that loaded. Instead, make a
10+
# separate helper file that requires this one and then use it only in the specs
11+
# that actually need it.
12+
#
13+
# The `.rspec` file also contains a few flags that are not defaults but that
14+
# users commonly want.
15+
#
16+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
17+
RSpec.configure do |config|
18+
# The settings below are suggested to provide a good initial experience
19+
# with RSpec, but feel free to customize to your heart's content.
20+
=begin
21+
# These two settings work together to allow you to limit a spec run
22+
# to individual examples or groups you care about by tagging them with
23+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
24+
# get run.
25+
config.filter_run :focus
26+
config.run_all_when_everything_filtered = true
27+
28+
# Many RSpec users commonly either run the entire suite or an individual
29+
# file, and it's useful to allow more verbose output when running an
30+
# individual spec file.
31+
if config.files_to_run.one?
32+
# Use the documentation formatter for detailed output,
33+
# unless a formatter has already been configured
34+
# (e.g. via a command-line flag).
35+
config.default_formatter = 'doc'
36+
end
37+
38+
# Print the 10 slowest examples and example groups at the
39+
# end of the spec run, to help surface which specs are running
40+
# particularly slow.
41+
config.profile_examples = 10
42+
43+
# Run specs in random order to surface order dependencies. If you find an
44+
# order dependency and want to debug it, you can fix the order by providing
45+
# the seed, which is printed after each run.
46+
# --seed 1234
47+
config.order = :random
48+
49+
# Seed global randomization in this process using the `--seed` CLI option.
50+
# Setting this allows you to use `--seed` to deterministically reproduce
51+
# test failures related to randomization by passing the same `--seed` value
52+
# as the one that triggered the failure.
53+
Kernel.srand config.seed
54+
55+
# rspec-expectations config goes here. You can use an alternate
56+
# assertion/expectation library such as wrong or the stdlib/minitest
57+
# assertions if you prefer.
58+
config.expect_with :rspec do |expectations|
59+
# Enable only the newer, non-monkey-patching expect syntax.
60+
# For more details, see:
61+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
62+
expectations.syntax = :expect
63+
end
64+
65+
# rspec-mocks config goes here. You can use an alternate test double
66+
# library (such as bogus or mocha) by changing the `mock_with` option here.
67+
config.mock_with :rspec do |mocks|
68+
# Enable only the newer, non-monkey-patching expect syntax.
69+
# For more details, see:
70+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
71+
mocks.syntax = :expect
72+
73+
# Prevents you from mocking or stubbing a method that does not exist on
74+
# a real object. This is generally recommended.
75+
mocks.verify_partial_doubles = true
76+
end
77+
=end
78+
config.include FactoryBot::Syntax::Methods
79+
end

0 commit comments

Comments
 (0)