diff options
author | Jason Noble & Ralph Shnelvar <perlwizard@gmail.com> | 2012-02-25 13:56:52 -0700 |
---|---|---|
committer | Jason Noble <github+jasonn@jasonnoble.org> | 2012-04-30 07:48:35 -0600 |
commit | b5472cf7f22cb6d06bfdb329b13b919998e4ad7b (patch) | |
tree | 1ee1c958faf91fad162690fd88bb1c5301415ba3 /railties/test/application/rake | |
parent | 7d5146efad1c3bd471f315e4d259e00052eacbb6 (diff) | |
download | rails-b5472cf7f22cb6d06bfdb329b13b919998e4ad7b.tar.gz rails-b5472cf7f22cb6d06bfdb329b13b919998e4ad7b.tar.bz2 rails-b5472cf7f22cb6d06bfdb329b13b919998e4ad7b.zip |
Add test coverage for rake notes
Add separate tests to verify directories covered
Add tests to verify file_types
Diffstat (limited to 'railties/test/application/rake')
-rw-r--r-- | railties/test/application/rake/notes_test.rb | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb index d069703d30..9f7075248f 100644 --- a/railties/test/application/rake/notes_test.rb +++ b/railties/test/application/rake/notes_test.rb @@ -12,7 +12,8 @@ module ApplicationTests teardown_app end - test 'notes' do + test 'notes finds notes for certain file_types' do + app_file "app/views/home/index.html.erb", "<% # TODO: note in erb %>" app_file "app/views/home/index.html.haml", "-# TODO: note in haml" app_file "app/views/home/index.html.slim", "/ TODO: note in slim" @@ -51,6 +52,40 @@ module ApplicationTests end end + test 'notes finds notes in default directories' do + + app_file "app/controllers/some_controller.rb", "# TODO: note in app directory" + app_file "config/initializers/some_initializer.rb", "# TODO: note in config directory" + app_file "lib/some_file.rb", "# TODO: note in lib directory" + app_file "script/run_something.rb", "# TODO: note in script directory" + app_file "test/some_test.rb", 1000.times.map { "" }.join("\n") << "# TODO: note in test directory" + + boot_rails + + require 'rake' + require 'rdoc/task' + require 'rake/testtask' + + Rails.application.load_tasks + + Dir.chdir(app_path) do + output = `bundle exec rake notes` + lines = output.scan(/\[([0-9\s]+)\]/).flatten + + assert_match /note in app directory/, output + assert_match /note in config directory/, output + assert_match /note in lib directory/, output + assert_match /note in script directory/, output + assert_match /note in test directory/, output + + assert_equal 5, lines.size + + lines.each do |line_number| + assert_equal 4, line_number.size + end + end + + end private def boot_rails |