]> git.openstreetmap.org Git - rails.git/blob - lib/tasks/testing.rake
Just pass the user object, rather than the display_name, to the user_path helper
[rails.git] / lib / tasks / testing.rake
1 task "test" do
2   Rails::TestUnit::Runner.rake_run(["test/system"]) unless ENV.key?("TEST")
3 end
4
5 namespace :test do
6   task "lib" => "test:prepare" do
7     $LOAD_PATH << "test"
8     Rails::TestUnit::Runner.rake_run(["test/lib"])
9   end
10 end