前提・実現したいこと
Rails チュートリアル5.3.4URLでテストした際にエラーが出てしまいます。
発生している問題・エラーメッセージ
ERROR["test_should_get_home", #<Minitest::Reporters::Suite:0x00000000086b09b0 @name="StaticPagesControllerTest">, 0.782807600000524] test_should_get_home#StaticPagesControllerTest (0.78s) Minitest::UnexpectedError: ActionView::Template::Error: Permission denied @ rb_file_s_rename - (C:/Users/○○/environment/sample_app/tmp/cache/assets/sprockets/v4.0.0/PC/PC13qb75tKw8qRWb6f30pEgwZt6I44h67XQwcBGascg.cache.71571340.16044.671438, C:/Users/○○/environment/sample_app/tmp/cache/assets/sprockets/v4.0.0/PC/PC13qb75tKw8qRWb6f30pEgwZt6I44h67XQwcBGascg.cache)
該当のソースコード
ruby
1require 'test_helper' 2 3class SiteLayoutTest < ActionDispatch::IntegrationTest 4 5 test "layout links" do 6 get root_path 7 assert_template 'static_pages/home' 8 assert_select "a[href=?]", root_path, count: 2 9 assert_select "a[href=?]", help_path 10 assert_select "a[href=?]", about_path 11 assert_select "a[href=?]", contact_path 12 end 13end
試したこと
エラーメッセージを頑張って読んだがわからなかった。
rails sでブラウザから確認したがエラーはなっかた。
補足情報(FW/ツールのバージョンなど)
rails 6
あなたの回答
tips
プレビュー