Fixed test:uncommitted on Windows (backslash issue) (closes #4999) [paul@paulbutcher.com]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5263 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2006-10-09 02:23:03 +00:00
parent 0d8b8056be
commit ccd32adeca
2 changed files with 4 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
* Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [BobSilva]
* Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]

View File

@@ -67,8 +67,8 @@ namespace :test do
def t.file_list
changed_since_checkin = silence_stderr { `svn status` }.map { |path| path.chomp[7 .. -1] }
models = changed_since_checkin.select { |path| path =~ /app\/models\/.*\.rb/ }
controllers = changed_since_checkin.select { |path| path =~ /app\/controllers\/.*\.rb/ }
models = changed_since_checkin.select { |path| path =~ /app[\\\/]models[\\\/].*\.rb/ }
controllers = changed_since_checkin.select { |path| path =~ /app[\\\/]controllers[\\\/].*\.rb/ }
unit_tests = models.map { |model| "test/unit/#{File.basename(model, '.rb')}_test.rb" }
functional_tests = controllers.map { |controller| "test/functional/#{File.basename(controller, '.rb')}_test.rb" }