Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ruby-on-rails/60.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ruby on rails Rails测试的结果不一致_Ruby On Rails_Ruby_Windows_Testing - Fatal编程技术网

Ruby on rails Rails测试的结果不一致

Ruby on rails Rails测试的结果不一致,ruby-on-rails,ruby,windows,testing,Ruby On Rails,Ruby,Windows,Testing,我读过类似的帖子。 它只有一个响应,对我没有帮助 我一直在关注这本新书《Rails 6下的敏捷Web开发》。作者运行了这些测试,但它们对我不起作用 这就是我所做的 我使用newrails test创建了一个新的rails项目,然后运行rails-generate-scaffold-Product-title:string-description:text-image\u-url:string-price:decimal。这是作者使用的命令。 然后运行railsdb:migraterails\u

我读过类似的帖子。 它只有一个响应,对我没有帮助

我一直在关注这本新书《Rails 6下的敏捷Web开发》。作者运行了这些测试,但它们对我不起作用

这就是我所做的

我使用
newrails test
创建了一个新的rails项目,然后运行
rails-generate-scaffold-Product-title:string-description:text-image\u-url:string-price:decimal
。这是作者使用的命令。 然后运行
railsdb:migraterails\u ENV=test
,然后准备运行
rails测试

完成后,我在控制台中得到这个响应。
7次运行,5次断言,0次失败,3次错误,0次跳过

以下是错误

Error:
ProductsControllerTest#test_should_get_index:
ActionView::Template::Error: Permission denied @ rb_file_s_rename - (C:/Users/Client/Desktop/Ruby on Rails/tests/tmp/cache/assets/sprockets/v4.0.0/-T/-TZMQrMJrqe1bey8hRhmqKVmncCU8rFfTfOziZyMSMQ.cache.74410620.20908.613522, C:/Users/Client/Desktop/Ruby on Rails/tests/tmp/cache/assets/sprockets/v4.0.0/-T/-TZMQrMJrqe1bey8hRhmqKVmncCU8rFfTfOziZyMSMQ.cache)
我的档案

source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.6.6'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3', '>= 6.0.3.1'
# Use sqlite3 as the database for Active Record
# gem 'sqlite3', '~> 1.4'
gem 'sqlite3', git: "https://github.com/larskanis/sqlite3-ruby", branch: "add-gemspec"

# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 4.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Active Storage variant
# gem 'image_processing', '~> 1.2'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console', '>= 3.3.0'
end

group :test do
  # Adds support for Capybara system testing and selenium driver
  gem 'capybara', '>= 2.15'
  gem 'selenium-webdriver'
  # Easy installation and use of web drivers to run system tests with browsers
  gem 'webdrivers'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
我的Gemfile.lock

GIT
  remote: https://github.com/larskanis/sqlite3-ruby
  revision: 1027509079176fcc4088dcc7638101cde617cf16
  branch: add-gemspec
  specs:
    sqlite3 (1.3.13.20180326210955)

GEM
  remote: https://rubygems.org/
  specs:
    actioncable (6.0.3.2)
      actionpack (= 6.0.3.2)
      nio4r (~> 2.0)
      websocket-driver (>= 0.6.1)
    actionmailbox (6.0.3.2)
      actionpack (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      mail (>= 2.7.1)
    actionmailer (6.0.3.2)
      actionpack (= 6.0.3.2)
      actionview (= 6.0.3.2)
      activejob (= 6.0.3.2)
      mail (~> 2.5, >= 2.5.4)
      rails-dom-testing (~> 2.0)
    actionpack (6.0.3.2)
      actionview (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      rack (~> 2.0, >= 2.0.8)
      rack-test (>= 0.6.3)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.0, >= 1.2.0)
    actiontext (6.0.3.2)
      actionpack (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      nokogiri (>= 1.8.5)
    actionview (6.0.3.2)
      activesupport (= 6.0.3.2)
      builder (~> 3.1)
      erubi (~> 1.4)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.1, >= 1.2.0)
    activejob (6.0.3.2)
      activesupport (= 6.0.3.2)
      globalid (>= 0.3.6)
    activemodel (6.0.3.2)
      activesupport (= 6.0.3.2)
    activerecord (6.0.3.2)
      activemodel (= 6.0.3.2)
      activesupport (= 6.0.3.2)
    activestorage (6.0.3.2)
      actionpack (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      marcel (~> 0.3.1)
    activesupport (6.0.3.2)
      concurrent-ruby (~> 1.0, >= 1.0.2)
      i18n (>= 0.7, < 2)
      minitest (~> 5.1)
      tzinfo (~> 1.1)
      zeitwerk (~> 2.2, >= 2.2.2)
    addressable (2.7.0)
      public_suffix (>= 2.0.2, < 5.0)
    bindex (0.8.1)
    bootsnap (1.4.6)
      msgpack (~> 1.0)
    builder (3.2.4)
    byebug (11.1.3)
    capybara (3.33.0)
      addressable
      mini_mime (>= 0.1.3)
      nokogiri (~> 1.8)
      rack (>= 1.6.0)
      rack-test (>= 0.6.3)
      regexp_parser (~> 1.5)
      xpath (~> 3.2)
    childprocess (3.0.0)
    concurrent-ruby (1.1.6)
    crass (1.0.6)
    erubi (1.9.0)
    ffi (1.13.1-x64-mingw32)
    globalid (0.4.2)
      activesupport (>= 4.2.0)
    i18n (1.8.3)
      concurrent-ruby (~> 1.0)
    jbuilder (2.10.0)
      activesupport (>= 5.0.0)
    loofah (2.6.0)
      crass (~> 1.0.2)
      nokogiri (>= 1.5.9)
    mail (2.7.1)
      mini_mime (>= 0.1.1)
    marcel (0.3.3)
      mimemagic (~> 0.3.2)
    method_source (1.0.0)
    mimemagic (0.3.5)
    mini_mime (1.0.2)
    mini_portile2 (2.4.0)
    minitest (5.14.1)
    msgpack (1.3.3-x64-mingw32)
    nio4r (2.5.2)
    nokogiri (1.10.9-x64-mingw32)
      mini_portile2 (~> 2.4.0)
    public_suffix (4.0.5)
    puma (4.3.5)
      nio4r (~> 2.0)
    rack (2.2.3)
    rack-proxy (0.6.5)
      rack
    rack-test (1.1.0)
      rack (>= 1.0, < 3)
    rails (6.0.3.2)
      actioncable (= 6.0.3.2)
      actionmailbox (= 6.0.3.2)
      actionmailer (= 6.0.3.2)
      actionpack (= 6.0.3.2)
      actiontext (= 6.0.3.2)
      actionview (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activemodel (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      bundler (>= 1.3.0)
      railties (= 6.0.3.2)
      sprockets-rails (>= 2.0.0)
    rails-dom-testing (2.0.3)
      activesupport (>= 4.2.0)
      nokogiri (>= 1.6)
    rails-html-sanitizer (1.3.0)
      loofah (~> 2.3)
    railties (6.0.3.2)
      actionpack (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      method_source
      rake (>= 0.8.7)
      thor (>= 0.20.3, < 2.0)
    rake (13.0.1)
    regexp_parser (1.7.1)
    rubyzip (2.3.0)
    sass-rails (6.0.0)
      sassc-rails (~> 2.1, >= 2.1.1)
    sassc (2.4.0-x64-mingw32)
      ffi (~> 1.9)
    sassc-rails (2.1.2)
      railties (>= 4.0.0)
      sassc (>= 2.0)
      sprockets (> 3.0)
      sprockets-rails
      tilt
    selenium-webdriver (3.142.7)
      childprocess (>= 0.5, < 4.0)
      rubyzip (>= 1.2.2)
    sprockets (4.0.2)
      concurrent-ruby (~> 1.0)
      rack (> 1, < 3)
    sprockets-rails (3.2.1)
      actionpack (>= 4.0)
      activesupport (>= 4.0)
      sprockets (>= 3.0.0)
    thor (1.0.1)
    thread_safe (0.3.6)
    tilt (2.0.10)
    turbolinks (5.2.1)
      turbolinks-source (~> 5.2)
    turbolinks-source (5.2.0)
    tzinfo (1.2.7)
      thread_safe (~> 0.1)
    tzinfo-data (1.2020.1)
      tzinfo (>= 1.0.0)
    web-console (4.0.3)
      actionview (>= 6.0.0)
      activemodel (>= 6.0.0)
      bindex (>= 0.4.0)
      railties (>= 6.0.0)
    webdrivers (4.4.1)
      nokogiri (~> 1.6)
      rubyzip (>= 1.3.0)
      selenium-webdriver (>= 3.0, < 4.0)
    webpacker (4.2.2)
      activesupport (>= 4.2)
      rack-proxy (>= 0.6.1)
      railties (>= 4.2)
    websocket-driver (0.7.2)
      websocket-extensions (>= 0.1.0)
    websocket-extensions (0.1.5)
    xpath (3.2.0)
      nokogiri (~> 1.8)
    zeitwerk (2.3.0)

PLATFORMS
  x64-mingw32

DEPENDENCIES
  bootsnap (>= 1.4.2)
  byebug
  capybara (>= 2.15)
  jbuilder (~> 2.7)
  puma (~> 4.1)
  rails (~> 6.0.3, >= 6.0.3.1)
  sass-rails (>= 6)
  selenium-webdriver
  sqlite3!
  turbolinks (~> 5)
  tzinfo-data
  web-console (>= 3.3.0)
  webdrivers
  webpacker (~> 4.0)

RUBY VERSION
   ruby 2.6.6p146

BUNDLED WITH
   1.17.2
GIT
远程:https://github.com/larskanis/sqlite3-ruby
修订:1027509079176fcc4088dcc7638101cde617cf16
分支:添加gempec
规格:
sqlite3(1.3.13.20180326210955)
宝石
远程:https://rubygems.org/
规格:
actioncable(6.0.3.2)
actionpack(=6.0.3.2)
nio4r(~>2.0)
websocket驱动程序(>=0.6.1)
actionmailbox(6.0.3.2)
actionpack(=6.0.3.2)
活动作业(=6.0.3.2)
activerecord(=6.0.3.2)
动态存储(=6.0.3.2)
主动支持(=6.0.3.2)
邮件(>=2.7.1)
actionmailer(6.0.3.2)
actionpack(=6.0.3.2)
actionview(=6.0.3.2)
活动作业(=6.0.3.2)
邮件(~>2.5,>=2.5.4)
rails dom测试(~>2.0)
actionpack(6.0.3.2)
actionview(=6.0.3.2)
主动支持(=6.0.3.2)
机架(~>2.0,>=2.0.8)
机架测试(>=0.6.3)
rails dom测试(~>2.0)
rails html消毒剂(~>1.0,>=1.2.0)
行动文本(6.0.3.2)
actionpack(=6.0.3.2)
activerecord(=6.0.3.2)
动态存储(=6.0.3.2)
主动支持(=6.0.3.2)
nokogiri(>=1.8.5)
actionview(6.0.3.2)
主动支持(=6.0.3.2)
生成器(~>3.1)
erubi(~>1.4)
rails dom测试(~>2.0)
rails html消毒剂(~>1.1,>=1.2.0)
activejob(6.0.3.2)
主动支持(=6.0.3.2)
globalid(>=0.3.6)
activemodel(6.0.3.2)
主动支持(=6.0.3.2)
activerecord(6.0.3.2)
活动模型(=6.0.3.2)
主动支持(=6.0.3.2)
动态存储(6.0.3.2)
actionpack(=6.0.3.2)
活动作业(=6.0.3.2)
activerecord(=6.0.3.2)
马塞尔(~>0.3.1)
activesupport(6.0.3.2)
并发ruby(~>1.0,>=1.0.2)
i18n(>=0.7,<2)
小型试验(~>5.1)
tzinfo(~>1.1)
zeitwerk(~>2.2,>=2.2.2)
可寻址(2.7.0)
公共_后缀(>=2.0.2,<5.0)
bindex(0.8.1)
bootsnap(1.4.6)
msgpack(~>1.0)
建造商(3.2.4)
byebug(11.1.3)
水豚(3.33.0)
可寻址
迷你mime(>=0.1.3)
nokogiri(~>1.8)
机架(>=1.6.0)
机架测试(>=0.6.3)
regexp_解析器(~>1.5)
xpath(~>3.2)
childprocess(3.0.0)
并发ruby(1.1.6)
CRAS(1.0.6)
erubi(1.9.0)
外国金融机构(1.13.1-x64-W32)
globalid(0.4.2)
activesupport(>=4.2.0)
i18n(1.8.3)
并发ruby(~>1.0)
jbuilder(2.10.0)
activesupport(>=5.0.0)
丝瓜(2.6.0)
CRAS(~>1.0.2)
nokogiri(>=1.5.9)
邮件(2.7.1)
迷你mime(>=0.1.1)
马塞尔(0.3.3)
mimemagic(~>0.3.2)
方法_来源(1.0.0)
mimemagic(0.3.5)
迷你mime(1.0.2)
迷你端口2(2.4.0)
小型试验(5.14.1)
msgpack(1.3.3-x64-mingw32)
nio4r(2.5.2)
nokogiri(1.10.9-x64-mingw32)
迷你端口2(~>2.4.0)
公共_后缀(4.0.5)
美洲狮(4.3.5)
nio4r(~>2.0)
机架(2.2.3)
机架代理(0.6.5)
支架
机架测试(1.1.0)
机架(>=1.0,<3)
轨道(6.0.3.2)
行动电缆(=6.0.3.2)
操作邮箱(=6.0.3.2)
actionmailer(=6.0.3.2)
actionpack(=6.0.3.2)
行动文本(=6.0.3.2)
actionview(=6.0.3.2)
活动作业(=6.0.3.2)
活动模型(=6.0.3.2)
activerecord(=6.0.3.2)
动态存储(=6.0.3.2)
主动支持(=6.0.3.2)
捆绑机(>=1.3.0)
栏杆(=6.0.3.2)
链轮轨道(>=2.0.0)
rails dom测试(2.0.3)
activesupport(>=4.2.0)
nokogiri(>=1.6)
rails html消毒剂(1.3.0)
丝瓜(~>2.3)
栏杆(6.0.3.2)
actionpack(=6.0.3.2)
主动支持(=6.0.3.2)
方法u源
耙(大于等于0.8.7)
雷神(>=0.20.3,<2.0)
耙(13.0.1)
regexp_解析器(1.7.1)
rubyzip(2.3.0)
sass导轨(6.0.0)
sassc轨道(~>2.1,>=2.1.1)
sassc(2.4.0-x64-mingw32)
外国金融机构(~>1.9)
sassc轨道(2.1.2)
钢轨(>=4.0.0)
sassc(>=2.0)
链轮(>3.0)
链轮轨道
倾斜
selenium webdriver(3.142.7)
子进程(>=0.5,<4.0)
rubyzip(>=1.2.2)
链轮(4.0.2)
并发ruby(~>1.0)
机架(>1,<3)
链轮轨道(3.2.1)
actionpack(>=4.0)
activesupport(>=4.0)
链轮(>=3.0.0)
雷神(1.0.1)
螺纹安全(0.3.6)
倾斜(2.0.10)
涡轮链路(5.2.1)
TurboLink源(~>5.2)
turbolinks源(5.2.0)
tzinfo(1.2.7)
线程安全(~>0.1)
tzinfo数据(1.2020.1)
tzinfo(>=1.0.0)
web控制台(4.0.3)
actionview(>=6.0.0)
activemodel(>=6.0.0)
bindex(>=0.4.0)
钢轨(>=6.0.0)
网络驱动程序(4.4.1)
nokogiri(~>1.6)
rubyzip(>=1.3.0)
selenium webdriver(>=3.0,<4.0)
webpacker(4.2.2)
activesupport(>=4.2)
机架代理服务器(>=0.6.1)
钢轨(>=4.2)
websocket驱动器(0.7.2)
websocket扩展(>=0.1.0)
websocket扩展(0.1.5)
xpath(3.2.0)
nokogiri(~>1.8)
zeitwerk(2.3.0)
平台
x64-W32
依赖关系
bootsnap(>=1.4.2)
比伯
水豚
test "should get index" do
    get products_url
    assert_response :success
end

test "should show product" do
  get product_url(@product)
  assert_response :success
end
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.6.6'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3', '>= 6.0.3.1'
# Use sqlite3 as the database for Active Record
# gem 'sqlite3', '~> 1.4'
gem 'sqlite3', git: "https://github.com/larskanis/sqlite3-ruby", branch: "add-gemspec"

# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 4.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Active Storage variant
# gem 'image_processing', '~> 1.2'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console', '>= 3.3.0'
end

group :test do
  # Adds support for Capybara system testing and selenium driver
  gem 'capybara', '>= 2.15'
  gem 'selenium-webdriver'
  # Easy installation and use of web drivers to run system tests with browsers
  gem 'webdrivers'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
GIT
  remote: https://github.com/larskanis/sqlite3-ruby
  revision: 1027509079176fcc4088dcc7638101cde617cf16
  branch: add-gemspec
  specs:
    sqlite3 (1.3.13.20180326210955)

GEM
  remote: https://rubygems.org/
  specs:
    actioncable (6.0.3.2)
      actionpack (= 6.0.3.2)
      nio4r (~> 2.0)
      websocket-driver (>= 0.6.1)
    actionmailbox (6.0.3.2)
      actionpack (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      mail (>= 2.7.1)
    actionmailer (6.0.3.2)
      actionpack (= 6.0.3.2)
      actionview (= 6.0.3.2)
      activejob (= 6.0.3.2)
      mail (~> 2.5, >= 2.5.4)
      rails-dom-testing (~> 2.0)
    actionpack (6.0.3.2)
      actionview (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      rack (~> 2.0, >= 2.0.8)
      rack-test (>= 0.6.3)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.0, >= 1.2.0)
    actiontext (6.0.3.2)
      actionpack (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      nokogiri (>= 1.8.5)
    actionview (6.0.3.2)
      activesupport (= 6.0.3.2)
      builder (~> 3.1)
      erubi (~> 1.4)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.1, >= 1.2.0)
    activejob (6.0.3.2)
      activesupport (= 6.0.3.2)
      globalid (>= 0.3.6)
    activemodel (6.0.3.2)
      activesupport (= 6.0.3.2)
    activerecord (6.0.3.2)
      activemodel (= 6.0.3.2)
      activesupport (= 6.0.3.2)
    activestorage (6.0.3.2)
      actionpack (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      marcel (~> 0.3.1)
    activesupport (6.0.3.2)
      concurrent-ruby (~> 1.0, >= 1.0.2)
      i18n (>= 0.7, < 2)
      minitest (~> 5.1)
      tzinfo (~> 1.1)
      zeitwerk (~> 2.2, >= 2.2.2)
    addressable (2.7.0)
      public_suffix (>= 2.0.2, < 5.0)
    bindex (0.8.1)
    bootsnap (1.4.6)
      msgpack (~> 1.0)
    builder (3.2.4)
    byebug (11.1.3)
    capybara (3.33.0)
      addressable
      mini_mime (>= 0.1.3)
      nokogiri (~> 1.8)
      rack (>= 1.6.0)
      rack-test (>= 0.6.3)
      regexp_parser (~> 1.5)
      xpath (~> 3.2)
    childprocess (3.0.0)
    concurrent-ruby (1.1.6)
    crass (1.0.6)
    erubi (1.9.0)
    ffi (1.13.1-x64-mingw32)
    globalid (0.4.2)
      activesupport (>= 4.2.0)
    i18n (1.8.3)
      concurrent-ruby (~> 1.0)
    jbuilder (2.10.0)
      activesupport (>= 5.0.0)
    loofah (2.6.0)
      crass (~> 1.0.2)
      nokogiri (>= 1.5.9)
    mail (2.7.1)
      mini_mime (>= 0.1.1)
    marcel (0.3.3)
      mimemagic (~> 0.3.2)
    method_source (1.0.0)
    mimemagic (0.3.5)
    mini_mime (1.0.2)
    mini_portile2 (2.4.0)
    minitest (5.14.1)
    msgpack (1.3.3-x64-mingw32)
    nio4r (2.5.2)
    nokogiri (1.10.9-x64-mingw32)
      mini_portile2 (~> 2.4.0)
    public_suffix (4.0.5)
    puma (4.3.5)
      nio4r (~> 2.0)
    rack (2.2.3)
    rack-proxy (0.6.5)
      rack
    rack-test (1.1.0)
      rack (>= 1.0, < 3)
    rails (6.0.3.2)
      actioncable (= 6.0.3.2)
      actionmailbox (= 6.0.3.2)
      actionmailer (= 6.0.3.2)
      actionpack (= 6.0.3.2)
      actiontext (= 6.0.3.2)
      actionview (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activemodel (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      bundler (>= 1.3.0)
      railties (= 6.0.3.2)
      sprockets-rails (>= 2.0.0)
    rails-dom-testing (2.0.3)
      activesupport (>= 4.2.0)
      nokogiri (>= 1.6)
    rails-html-sanitizer (1.3.0)
      loofah (~> 2.3)
    railties (6.0.3.2)
      actionpack (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      method_source
      rake (>= 0.8.7)
      thor (>= 0.20.3, < 2.0)
    rake (13.0.1)
    regexp_parser (1.7.1)
    rubyzip (2.3.0)
    sass-rails (6.0.0)
      sassc-rails (~> 2.1, >= 2.1.1)
    sassc (2.4.0-x64-mingw32)
      ffi (~> 1.9)
    sassc-rails (2.1.2)
      railties (>= 4.0.0)
      sassc (>= 2.0)
      sprockets (> 3.0)
      sprockets-rails
      tilt
    selenium-webdriver (3.142.7)
      childprocess (>= 0.5, < 4.0)
      rubyzip (>= 1.2.2)
    sprockets (4.0.2)
      concurrent-ruby (~> 1.0)
      rack (> 1, < 3)
    sprockets-rails (3.2.1)
      actionpack (>= 4.0)
      activesupport (>= 4.0)
      sprockets (>= 3.0.0)
    thor (1.0.1)
    thread_safe (0.3.6)
    tilt (2.0.10)
    turbolinks (5.2.1)
      turbolinks-source (~> 5.2)
    turbolinks-source (5.2.0)
    tzinfo (1.2.7)
      thread_safe (~> 0.1)
    tzinfo-data (1.2020.1)
      tzinfo (>= 1.0.0)
    web-console (4.0.3)
      actionview (>= 6.0.0)
      activemodel (>= 6.0.0)
      bindex (>= 0.4.0)
      railties (>= 6.0.0)
    webdrivers (4.4.1)
      nokogiri (~> 1.6)
      rubyzip (>= 1.3.0)
      selenium-webdriver (>= 3.0, < 4.0)
    webpacker (4.2.2)
      activesupport (>= 4.2)
      rack-proxy (>= 0.6.1)
      railties (>= 4.2)
    websocket-driver (0.7.2)
      websocket-extensions (>= 0.1.0)
    websocket-extensions (0.1.5)
    xpath (3.2.0)
      nokogiri (~> 1.8)
    zeitwerk (2.3.0)

PLATFORMS
  x64-mingw32

DEPENDENCIES
  bootsnap (>= 1.4.2)
  byebug
  capybara (>= 2.15)
  jbuilder (~> 2.7)
  puma (~> 4.1)
  rails (~> 6.0.3, >= 6.0.3.1)
  sass-rails (>= 6)
  selenium-webdriver
  sqlite3!
  turbolinks (~> 5)
  tzinfo-data
  web-console (>= 3.3.0)
  webdrivers
  webpacker (~> 4.0)

RUBY VERSION
   ruby 2.6.6p146

BUNDLED WITH
   1.17.2
$ rails new test
Invalid application name test. Please give a name which does not match one of the reserved rails words: application, destroy, plugin, runner, test