lib/autotest/migrate.rb



# -*- ruby -*-

module Autotest::Migrate
  Autotest.add_hook(:run) do |autotest|
    system "rake db:migrate" if autotest.class.to_s == "RailsAutotest"
  end
end