diff options
author | Eugene Kenny <elkenny@gmail.com> | 2017-07-23 11:09:15 +0100 |
---|---|---|
committer | Eugene Kenny <elkenny@gmail.com> | 2017-07-23 20:40:00 +0100 |
commit | 2b331e9098c489791031ee17f683ca8be92f7bba (patch) | |
tree | 97c9218e82b41fe8bf9ba92a3363158957fa6bb1 /railties | |
parent | 36a301a90aaea213caa54cf3825d3fc9b345c04e (diff) | |
download | rails-2b331e9098c489791031ee17f683ca8be92f7bba.tar.gz rails-2b331e9098c489791031ee17f683ca8be92f7bba.tar.bz2 rails-2b331e9098c489791031ee17f683ca8be92f7bba.zip |
Avoid modifying frozen string in check_schema_file
This was missed when the frozen string literal pragma was added to this
file because the string is only modified when running in the context of
a full Rails app, which wasn't covered by the test suite.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/rake/dbs_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/railties/test/application/rake/dbs_test.rb b/railties/test/application/rake/dbs_test.rb index c63f23fa0a..9e612f1526 100644 --- a/railties/test/application/rake/dbs_test.rb +++ b/railties/test/application/rake/dbs_test.rb @@ -259,6 +259,13 @@ module ApplicationTests end end + test "db:schema:load fails if schema.rb doesn't exist yet" do + Dir.chdir(app_path) do + stderr_output = capture(:stderr) { `bin/rails db:schema:load` } + assert_match /Run `rails db:migrate` to create it/, stderr_output + end + end + def db_test_load_structure Dir.chdir(app_path) do `bin/rails generate model book title:string; |