diff options
author | Josh Crowder <josh@seriousfox.co.uk> | 2013-08-15 11:30:01 +0100 |
---|---|---|
committer | Josh Crowder <josh@seriousfox.co.uk> | 2013-08-15 11:30:01 +0100 |
commit | f3073773a31d2a6a4f3946dc706a31400c0f53a0 (patch) | |
tree | 181ce04a4bfc26dd2753cfe52775c13ad9a3cee9 /railties/test/application | |
parent | e90f0e0eb68825b7a07e2f468272a138107154c3 (diff) | |
download | rails-f3073773a31d2a6a4f3946dc706a31400c0f53a0.tar.gz rails-f3073773a31d2a6a4f3946dc706a31400c0f53a0.tar.bz2 rails-f3073773a31d2a6a4f3946dc706a31400c0f53a0.zip |
Adding LESS to rake notes
Diffstat (limited to 'railties/test/application')
-rw-r--r-- | railties/test/application/rake/notes_test.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb index 9a92c5f6ff..46ed500167 100644 --- a/railties/test/application/rake/notes_test.rb +++ b/railties/test/application/rake/notes_test.rb @@ -25,6 +25,7 @@ module ApplicationTests app_file "app/assets/stylesheets/application.css", "// TODO: note in css" app_file "app/assets/stylesheets/application.css.scss", "// TODO: note in scss" app_file "app/assets/stylesheets/application.css.sass", "// TODO: note in sass" + app_file "app/assets/stylesheets/application.css.less", "// TODO: note in less" app_file "app/controllers/application_controller.rb", 1000.times.map { "" }.join("\n") << "# TODO: note in ruby" app_file "lib/tasks/task.rake", "# TODO: note in rake" @@ -48,6 +49,7 @@ module ApplicationTests assert_match(/note in css/, output) assert_match(/note in scss/, output) assert_match(/note in sass/, output) + assert_match(/note in less/, output) assert_match(/note in rake/, output) assert_equal 10, lines.size |