aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake/notes_test.rb
diff options
context:
space:
mode:
authorTeng Siong Ong <siong1987@gmail.com>2012-04-22 18:45:13 -0500
committerTeng Siong Ong <siong1987@gmail.com>2012-04-22 18:45:13 -0500
commit55ceced1fbebff2491c282308bcd8c7b2aef5bba (patch)
tree8bbef856e8039d0b7cc9efeb0080b7e502ec050a /railties/test/application/rake/notes_test.rb
parent90269802dbf690fbe8be0cd01e3b387a51f02b70 (diff)
downloadrails-55ceced1fbebff2491c282308bcd8c7b2aef5bba.tar.gz
rails-55ceced1fbebff2491c282308bcd8c7b2aef5bba.tar.bz2
rails-55ceced1fbebff2491c282308bcd8c7b2aef5bba.zip
`rake notes` and `rake notes:custom` now support
css, scss and css.
Diffstat (limited to 'railties/test/application/rake/notes_test.rb')
-rw-r--r--railties/test/application/rake/notes_test.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb
index 04abf9e3a1..d069703d30 100644
--- a/railties/test/application/rake/notes_test.rb
+++ b/railties/test/application/rake/notes_test.rb
@@ -17,6 +17,9 @@ module ApplicationTests
app_file "app/views/home/index.html.haml", "-# TODO: note in haml"
app_file "app/views/home/index.html.slim", "/ TODO: note in slim"
app_file "app/assets/javascripts/application.js.coffee", "# TODO: note in coffee"
+ app_file "app/assets/javascripts/application.js", "// TODO: note in js"
+ 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/controllers/application_controller.rb", 1000.times.map { "" }.join("\n") << "# TODO: note in ruby"
boot_rails
@@ -35,8 +38,11 @@ module ApplicationTests
assert_match /note in slim/, output
assert_match /note in ruby/, output
assert_match /note in coffee/, output
+ assert_match /note in js/, output
+ assert_match /note in css/, output
+ assert_match /note in scss/, output
- assert_equal 5, lines.size
+ assert_equal 8, lines.size
lines.each do |line|
assert_equal 4, line[0].size