diff options
author | John Meehan <john.meehan1@gmail.com> | 2016-07-05 15:34:13 +0100 |
---|---|---|
committer | John Meehan <john.meehan1@gmail.com> | 2016-07-05 15:34:13 +0100 |
commit | 22a94d9ac4be7c1ee0482f671cd7d0ae6dd7cca5 (patch) | |
tree | 0369f6c9489f55fb44662e965f6b80bdec86bbaa /railties | |
parent | 80abee6662ed001c0ee9f59c323e8c39c62220ca (diff) | |
download | rails-22a94d9ac4be7c1ee0482f671cd7d0ae6dd7cca5.tar.gz rails-22a94d9ac4be7c1ee0482f671cd7d0ae6dd7cca5.tar.bz2 rails-22a94d9ac4be7c1ee0482f671cd7d0ae6dd7cca5.zip |
Fix test to try `spec/` directory as opposed to `app/spec` which I had
accidently set it to.
Made the change and test still passes.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/rake/notes_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb index a6caf007cd..a94e302099 100644 --- a/railties/test/application/rake/notes_test.rb +++ b/railties/test/application/rake/notes_test.rb @@ -127,8 +127,8 @@ module ApplicationTests end test 'register additional directories' do - app_file "app/spec/spec_helper.rb", "# TODO: note in spec" - app_file "app/spec/models/user_spec.rb", "# TODO: note in model spec" + app_file "spec/spec_helper.rb", "# TODO: note in spec" + app_file "spec/models/user_spec.rb", "# TODO: note in model spec" add_to_config %q{ config.annotations.register_directories("spec") } run_rake_notes do |output, lines| |