6
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[RSpec]NameError: uninitialized constant Rspecというエラーの対処法

Posted at

Rspecではなく
RSpecにすれば直ります。

Rspec.describe "HomesController", type: :controller do
#=> NameError: uninitialized constant Rspec
# ./spec/controllers/homes_controller_spec.rb:3:in `<top (required)>'
# ------------------
# --- Caused by: ---
# NameError:
#   uninitialized constant Rspec
#   ./spec/controllers/homes_controller_spec.rb:3:in `<top (required)>'

RSpec.describe "HomesController", type: :controller do
#=> Finished in 1.77 seconds (files took 8.81 seconds to load)
# 14 examples, 1 failure

なんとまさかSを小文字にしてたなんて・・・・(泣)

この記事を見てハッと気づきました。
https://stackoverflow.com/questions/28487983/uninitialized-constant-rspec

小1時間も無駄に・・・
どなたかのためになれば幸いです。

ちゃんと見てたつもりでも、「NameError: uninitialized constant」を見たら、もう絶対何か名前つけ間違えてると思ってチェックするようにします。

6
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?