diff options
author | schneems <richard.schneeman@gmail.com> | 2015-07-29 20:10:45 -0500 |
---|---|---|
committer | schneems <richard.schneeman@gmail.com> | 2015-07-29 20:12:56 -0500 |
commit | 9b18ba75b1e6910c2737d82fca5af856192c6498 (patch) | |
tree | cab2db25385e59797796500051b64bf339f92bd3 /railties/test/application/rake | |
parent | 4bc246915671a4766996be0ec9d6bd312c112d1f (diff) | |
download | rails-9b18ba75b1e6910c2737d82fca5af856192c6498.tar.gz rails-9b18ba75b1e6910c2737d82fca5af856192c6498.tar.bz2 rails-9b18ba75b1e6910c2737d82fca5af856192c6498.zip |
Fix rake/notes_test
Presumably due to https://github.com/rails/sprockets-rails/pull/265 sprockets was trying to load the "scss" gem but it isn't in the gemfile:
```
ApplicationTests::RakeTests::RakeNotesTest#test_register_a_new_extension:
LoadError: cannot load such file -- sass
```
If we use an empty precompile list, it won't try to load sass.
Diffstat (limited to 'railties/test/application/rake')
-rw-r--r-- | railties/test/application/rake/notes_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb index d6f5fee5c3..c87515f00f 100644 --- a/railties/test/application/rake/notes_test.rb +++ b/railties/test/application/rake/notes_test.rb @@ -114,6 +114,7 @@ module ApplicationTests end test 'register a new extension' do + add_to_config "config.assets.precompile = []" add_to_config %q{ config.annotations.register_extensions("scss", "sass") { |annotation| /\/\/\s*(#{annotation}):?\s*(.*)$/ } } app_file "app/assets/stylesheets/application.css.scss", "// TODO: note in scss" app_file "app/assets/stylesheets/application.css.sass", "// TODO: note in sass" |