質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.50%
Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Ruby on Rails 4

Ruby on Rails4はRubyによって書かれたオープンソースのウェブフレームワークです。 Ruby on Railsは「設定より規約」の原則に従っており、効率的に作業を行うために再開発を行う必要をなくしてくれます。

Q&A

解決済

1回答

3521閲覧

Railsでテストスクリプト実行するとエラーが出てしまいます

退会済みユーザー

退会済みユーザー

総合スコア0

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Ruby on Rails 4

Ruby on Rails4はRubyによって書かれたオープンソースのウェブフレームワークです。 Ruby on Railsは「設定より規約」の原則に従っており、効率的に作業を行うために再開発を行う必要をなくしてくれます。

1グッド

0クリップ

投稿2016/05/16 03:22

編集2016/05/16 23:36

###テストスクリプトを動かしたい
プログラミングを勉強しはじめた超初心者になります。
現在、Ruby on Rails を「改訂3版基礎 Ruby on Rails (KS IMPRESS KISO SERIES)」という書籍を見ながら勉強しているのですが、その中の「テストスクリプトを実行」する項目でターミナルで実行しようとすると下記のようなエラーが出てきてしまいます。

Web Console is activated in the test environment, which is usually a mistake. To ensure it's only activated in development mode, move it to the development group of your Gemfile: gem 'web-console', group: :development If you still want to run it the test environment (and know what you are doing), put this in your Rails application configuration: config.web_console.development_only = false

分からないなりに、
config/application_rb に
config.web_console.development_only = false を追加して実行して見たりもしましたが、下記のようなエラーでできませんでした。

rake aborted! Don't know how to build task 'teat/models/member_test.rb' (see --tasks) (See full trace by running task with --trace)

本当に初心者で、エラーメッセージを翻訳で訳しても何を言っているのか何が正しいのか分からないくらいなので、いろいろ説明不足かもしれませんが どなたかアドバイスいただけると幸いです。

一応、Gemfileの中身も載せておきます。

source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.1' # Use mysql as the database for Active Record gem 'mysql2', '~> 0.3.20' gem 'rails-i18n' # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0' # Use Uglifier as compressor for JavaScript assets gem 'uglifier', '>= 1.3.0' # Use CoffeeScript for .coffee assets and views gem 'coffee-rails', '~> 4.1.0' # See https://github.com/rails/execjs#readme for more supported runtimes # gem 'therubyracer', platforms: :ruby # Use jquery as the JavaScript library gem 'jquery-rails' # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks gem 'turbolinks' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.0' # bundle exec rake doc:rails generates the API under doc/api. gem 'sdoc', '~> 0.4.0', group: :doc # Use ActiveModel has_secure_password # gem 'bcrypt', '~> 3.1.7' # Use Unicorn as the app server # gem 'unicorn' # Use Capistrano for deployment # gem 'capistrano-rails', group: :development group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' # Access an IRB console on exception pages or by using <%= console %> in views gem 'web-console', '~> 2.0' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' end
sahma👍を押しています

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

1点気になったのがメッセージ中のディレクトが'teat/...'になってるのですが、'test'の誤りでは?

Don't know how to build task 'teat/models/member_test.rb' (see --tasks)ド

投稿2016/05/17 00:15

ShoheiUyama

総合スコア206

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

退会済みユーザー

退会済みユーザー

2016/05/17 00:35

ご指摘、ありがとうございます! 本当だ、と思ってtest/に修正して実行してみたのですが、同じエラー表示が出てきて進めませんでした… 【エラー表示】 Web Console is activated in the test environment, which is usually a mistake. To ensure it's only activated in development mode, move it to the development group of your Gemfile: gem 'web-console', group: :development If you still want to run it the test environment (and know what you are doing), put this in your Rails application configuration: config.web_console.development_only = false やはり、何か違うのでしょうか…。
退会済みユーザー

退会済みユーザー

2016/05/17 00:41

すみません、先ほど test/ に修正した後に、config/application.rb に config.web_console.development_only = false の記述を追加して、再度実行したところ、テストに成功しました! やはり、ディレクトリ名の間違いが原因のようでした。 ありがとうございました!
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.50%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問