aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2015-07-29 20:10:45 -0500
committerschneems <richard.schneeman@gmail.com>2015-07-29 20:12:56 -0500
commit9b18ba75b1e6910c2737d82fca5af856192c6498 (patch)
treecab2db25385e59797796500051b64bf339f92bd3 /railties
parent4bc246915671a4766996be0ec9d6bd312c112d1f (diff)
downloadrails-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')
-rw-r--r--railties/test/application/rake/notes_test.rb1
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"