diff --git a/Rakefile b/Rakefile index 06bb406c..f23d9d8e 100644 --- a/Rakefile +++ b/Rakefile @@ -3,13 +3,11 @@ require 'rake/testtask' require 'rake/rdoctask' Rake::TestTask.new do |t| - t.libs << 'test' - t.pattern = 'test/*_test.rb' + t.libs << 'lib' + t.pattern = 'test/{unit,functional}/**/*_test.rb' # Update this line t.verbose = true end -# Generate the RDoc documentation - Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Shoulda -- Making your tests easy on the fingers and eyes" @@ -20,4 +18,3 @@ Rake::RDocTask.new { |rdoc| desc 'Default: run tests.' task :default => ['test'] - diff --git a/lib/controller_helpers.rb b/lib/controller_helpers.rb index df3c9d1b..fa6326a7 100644 --- a/lib/controller_helpers.rb +++ b/lib/controller_helpers.rb @@ -6,26 +6,37 @@ class Test::Unit::TestCase attr_accessor :redirect, :flash, :params, :render end - attr_accessor :identifier, :klass, :object, :parent_params, :test_actions, + attr_accessor :identifier, :klass, :object, :parent, + :test_html_actions, :test_xml_actions, :create, :update, :destroy + + alias parents parent def initialize @create = ActionOptions.new @update = ActionOptions.new @destroy = ActionOptions.new - @test_actions = [:index, :show, :new, :edit, :create, :update, :destroy] - end + + @test_html_actions = [:index, :show, :new, :edit, :create, :update, :destroy] + @test_xml_actions = [:index, :show, :create, :update, :destroy] + end def normalize!(target) - @test_actions = @test_actions.map(&:to_sym) + @test_html_actions = @test_html_actions.map(&:to_sym) + @test_xml_actions = @test_xml_actions.map(&:to_sym) + @identifier ||= :id @klass ||= target.name.gsub(/ControllerTest$/, '').singularize.constantize @object ||= @klass.name.tableize.singularize - @parent_params ||= {} + @parent ||= [] + @parent = [@parent] unless @parent.is_a? Array - @create.redirect ||= "#{@object}_url(record)" - @update.redirect ||= "#{@object}_url(record)" - @destroy.redirect ||= "#{@object.pluralize}_url" + singular_args = @parent.map {|n| "record.#{n}"} + @destroy.redirect ||= "#{@object.pluralize}_url(#{singular_args.join(', ')})" + + singular_args << 'record' + @create.redirect ||= "#{@object}_url(#{singular_args.join(', ')})" + @update.redirect ||= "#{@object}_url(#{singular_args.join(', ')})" @create.flash ||= /created/i @update.flash ||= /updated/i @@ -36,24 +47,32 @@ class Test::Unit::TestCase end end - def self.should_be_a_resource(&blk) + def self.should_be_restful(&blk) resource = ResourceOptions.new blk.call(resource) resource.normalize!(self) - make_show_test(resource) if resource.test_actions.include?(:show) - make_edit_test(resource) if resource.test_actions.include?(:edit) - make_index_test(resource) if resource.test_actions.include?(:index) - make_new_test(resource) if resource.test_actions.include?(:new) - make_destroy_test(resource) if resource.test_actions.include?(:destroy) - make_create_test(resource) if resource.test_actions.include?(:create) - make_update_test(resource) if resource.test_actions.include?(:update) + resource.test_html_actions.each do |action| + self.send(:"make_#{action}_html_test", resource) if self.respond_to? :"make_#{action}_html_test" + end + + context "XML: " do + setup do + @request.accept = "application/xml" + end + + resource.test_xml_actions.each do |action| + self.send(:"make_#{action}_xml_test", resource) if self.respond_to? :"make_#{action}_xml_test" + end + end end - def self.make_show_test(res) - should "get show for @#{res.object} via params: #{pretty_param_string(res)}" do - assert(record = instance_variable_get("@#{res.object}"), "This test requires you to set @#{res.object} in your setup block") - get :show, res.parent_params.merge({ res.identifier => record.to_param }) + def self.make_show_html_test(res) + # should "get show for @#{res.object} via params: #{pretty_param_string(res)}" do + should "get show for @#{res.object}" do + record = get_existing_record(res) + parent_params = make_parent_params(res, record) + get :show, parent_params.merge({ res.identifier => record.to_param }) assert assigns(res.klass.name.underscore.to_sym), "The show action isn't assigning to @#{res.klass.name.underscore}" assert_response :success assert_template 'show' @@ -61,10 +80,12 @@ class Test::Unit::TestCase end end - def self.make_edit_test(res) - should "get edit for @#{res.object} via params: #{pretty_param_string(res)}" do - assert(record = instance_variable_get("@#{res.object}"), "This test requires you to set @#{res.object} in your setup block") - get :edit, res.parent_params.merge({ res.identifier => record.to_param }) + def self.make_edit_html_test(res) + # should "get edit for @#{res.object} via params: #{pretty_param_string(res)}" do + should "get edit for @#{res.object}" do + record = get_existing_record(res) + parent_params = make_parent_params(res, record) + get :edit, parent_params.merge({ res.identifier => record.to_param }) assert assigns(res.klass.name.underscore.to_sym), "The edit action isn't assigning to @#{res.klass.name.underscore}" assert_response :success assert_select "form", true, "The edit template doesn't contain a
element" @@ -73,9 +94,10 @@ class Test::Unit::TestCase end end - def self.make_index_test(res) + def self.make_index_html_test(res) should "get index" do - get(:index, res.parent_params) + parent_params = make_parent_params(res) + get(:index, parent_params) assert_response :success assert assigns(res.klass.name.underscore.pluralize.to_sym), "The index action isn't assigning to @#{res.klass.name.underscore.pluralize}" @@ -84,9 +106,10 @@ class Test::Unit::TestCase end end - def self.make_new_test(res) + def self.make_new_html_test(res) should "show form on get to new" do - get(:new, res.parent_params) + parent_params = make_parent_params(res) + get(:new, parent_params) assert_response :success assert assigns(res.klass.name.underscore.to_sym), "The new action isn't assigning to @#{res.klass.name.underscore}" @@ -95,12 +118,12 @@ class Test::Unit::TestCase end end - def self.make_destroy_test(res) + def self.make_destroy_html_test(res) should "destroy @#{res.object} on 'delete' to destroy action" do - assert(record = instance_variable_get("@#{res.object}"), - "This test requires you to set @#{res.object} in your setup block") + record = get_existing_record(res) + parent_params = make_parent_params(res, record) assert_difference(res.klass, :count, -1) do - delete :destroy, res.parent_params.merge({ res.identifier => record.to_param }) + delete :destroy, parent_params.merge({ res.identifier => record.to_param }) assert_redirected_to eval(res.destroy.redirect, self.send(:binding), __FILE__, __LINE__), "Flash: #{flash.inspect}" assert_contains flash.values, res.destroy.flash, ", Flash: #{flash.inspect}" @@ -108,10 +131,12 @@ class Test::Unit::TestCase end end - def self.make_create_test(res) + def self.make_create_html_test(res) should "create #{res.klass} record on post to 'create'" do assert_difference(res.klass, :count, 1) do - post :create, res.parent_params.merge(res.object => res.create.params) + # params = res.parent_params.merge(res.object => res.create.params) + parent_params = make_parent_params(res) + post :create, parent_params.merge(res.object => res.create.params) assert record = assigns(res.object), "@#{res.object} not set after create" assert_equal [], record.errors.full_messages, "@#{res.object} has errors:" assert_redirected_to eval(res.create.redirect, self.send(:binding), __FILE__, __LINE__) @@ -120,50 +145,141 @@ class Test::Unit::TestCase end end - def self.make_update_test(res) + def self.make_update_html_test(res) should "update #{res.klass} record on put to :update" do - assert(record = instance_variable_get("@#{res.object}"), - "This test requires you to set @#{res.object} in your setup block") - put :update, res.parent_params.merge(res.identifier => record.to_param, res.object => res.create.params) + record = get_existing_record(res) + parent_params = make_parent_params(res, record) + put :update, parent_params.merge(res.identifier => record.to_param, res.object => res.update.params) assert record = assigns(res.object), "@#{res.object} not set after create" assert_equal [], record.errors.full_messages, "@#{res.object} has errors:" assert_redirected_to eval(res.update.redirect, self.send(:binding), __FILE__, __LINE__) assert_contains flash.values, res.update.flash, ", Flash: #{flash.inspect}" - res.create.params.each do |key, value| + res.update.params.each do |key, value| assert_equal value.to_s, record.send(key.to_sym).to_s, "#{res.object}.#{key} not set to #{value} after update" end end end - def self.should_be_denied_on(method, action, opts ={}) - redirect_proc = opts[:redirect] - klass = opts[:klass] || self.name.gsub(/ControllerTest/, '').singularize.constantize - params = opts[:params] || {} - expected_flash = opts[:flash] || /\w+/ - - should "no be able to #{method.to_s.upcase} #{action}" do - assert_no_difference(klass, :count) do - self.send(method, action, params) - assert_contains flash.values, expected_flash - - assert_response :redirect - if redirect_proc - assert_redirected_to(@controller.instance_eval(&redirect_proc)) - end + def self.make_show_xml_test(res) + should "get show for @#{res.object} as xml" do + record = get_existing_record(res) + parent_params = make_parent_params(res, record) + + get :show, parent_params.merge({ res.identifier => record.to_param }), :format => :xml + + assert_equal "application/xml; charset=utf-8", @response.headers['Content-Type'] + assert_response :success + assert_select "#{res.klass.name.underscore.dasherize}", 1, + "Can't find <#{res.klass.name.underscore.dasherize.pluralize}> in \n#{@response.body}" + end + end + + def self.make_index_xml_test(res) + should "get index as xml" do + parent_params = make_parent_params(res) + + get(:index, parent_params) + + assert_equal "application/xml; charset=utf-8", @response.headers['Content-Type'] + assert_response :success + assert_select "#{res.klass.name.underscore.dasherize.pluralize}", 1, + "Can't find <#{res.klass.name.underscore.dasherize.pluralize}> in \n#{@response.body}" + end + end + + def self.make_destroy_xml_test(res) + should "destroy @#{res.object} on 'delete' to destroy action as xml" do + record = get_existing_record(res) + parent_params = make_parent_params(res, record) + + assert_difference(res.klass, :count, -1) do + delete :destroy, parent_params.merge({ res.identifier => record.to_param }) + assert_equal "application/xml; charset=utf-8", @response.headers['Content-Type'] + assert_response :success + assert_match(/^\s*$/, @response.body, "The response body was not empty:") + end + end + end + + def self.make_create_xml_test(res) + should "create #{res.klass} record on post to 'create' as xml" do + assert_difference(res.klass, :count, 1) do + # params = res.parent_params.merge(res.object => res.create.params) + parent_params = make_parent_params(res) + + post :create, parent_params.merge(res.object => res.create.params) + + assert_equal "application/xml; charset=utf-8", @response.headers['Content-Type'] + assert_response :created + assert record = assigns(res.object), "@#{res.object} not set after create" + assert_equal [], record.errors.full_messages, "@#{res.object} has errors:" + assert_equal eval(res.create.redirect, self.send(:binding), __FILE__, __LINE__), + @response.headers["Location"] + end + end + end + + def self.make_update_xml_test(res) + should "update #{res.klass} record on put to :update as xml" do + record = get_existing_record(res) + parent_params = make_parent_params(res, record) + + put :update, parent_params.merge(res.identifier => record.to_param, res.object => res.update.params) + + assert_equal "application/xml; charset=utf-8", @response.headers['Content-Type'] + assert record = assigns(res.object), "@#{res.object} not set after create" + assert_equal [], record.errors.full_messages, "@#{res.object} has errors:" + assert_response :success + assert_match(/^\s*$/, @response.body, "The response body was not empty:") + res.update.params.each do |key, value| + assert_equal value.to_s, record.send(key.to_sym).to_s, + "#{res.object}.#{key} not set to #{value} after update" end end end + + # def self.should_be_denied_on(method, action, opts ={}) + # redirect_proc = opts[:redirect] + # klass = opts[:klass] || self.name.gsub(/ControllerTest/, '').singularize.constantize + # params = opts[:params] || {} + # expected_flash = opts[:flash] || /\w+/ + # + # should "no be able to #{method.to_s.upcase} #{action}" do + # assert_no_difference(klass, :count) do + # self.send(method, action, params) + # assert_contains flash.values, expected_flash + # + # assert_response :redirect + # if redirect_proc + # assert_redirected_to(@controller.instance_eval(&redirect_proc)) + # end + # end + # end + # end class << self - private + private include ThoughtBot::Shoulda::Private end private - def self.pretty_param_string(res) - res.parent_params.merge({ res.identifier => :X }).inspect.gsub(':X', '@object.to_param').gsub('=>', ' => ') + def get_existing_record(res) + returning(instance_variable_get "@#{res.object}") do |record| + assert(record, "This test requires you to set @#{res.object} in your setup block") + end + end + + def make_parent_params(resource, record = nil, parent_names = nil) + parent_names ||= resource.parents.reverse + + return {} if parent_names == [] # Base case + + parent_name = parent_names.shift + + parent = record ? record.send(parent_name) : parent_name.to_s.classify.constantize.find(:first) + + { :"#{parent_name}_id" => parent.id }.merge(make_parent_params(resource, parent, parent_names)) end - end diff --git a/lib/general.rb b/lib/general.rb index 282b6f20..836633dd 100644 --- a/lib/general.rb +++ b/lib/general.rb @@ -5,7 +5,7 @@ module ThoughtBot # :nodoc: module ClassMethods # Loads all fixture files (test/fixtures/*.yml) def load_all_fixtures - all_fixtures = Dir.glob(File.join(RAILS_ROOT, "test", "fixtures", "*.yml")).collect do |f| + all_fixtures = Dir.glob(File.join(Test::Unit::TestCase.fixture_path, "*.yml")).collect do |f| File.basename(f, '.yml').to_sym end fixtures *all_fixtures diff --git a/test/active_record_test.rb b/test/disabled/active_record_test.rb similarity index 95% rename from test/active_record_test.rb rename to test/disabled/active_record_test.rb index c45c3c85..aca9269a 100644 --- a/test/active_record_test.rb +++ b/test/disabled/active_record_test.rb @@ -1,4 +1,4 @@ -require File.join(File.dirname(__FILE__), 'test_helper') +require File.join(File.dirname(__FILE__), '..', 'test_helper') class Post < ActiveRecord::Base belongs_to :user diff --git a/test/context_test.rb b/test/disabled/context_test.rb similarity index 95% rename from test/context_test.rb rename to test/disabled/context_test.rb index 927cc588..d46d78df 100644 --- a/test/context_test.rb +++ b/test/disabled/context_test.rb @@ -1,4 +1,4 @@ -require File.join(File.dirname(__FILE__), 'test_helper') +require File.join(File.dirname(__FILE__), '..', 'test_helper') class ContextTest < Test::Unit::TestCase # :nodoc: diff --git a/test/helpers_test.rb b/test/disabled/helpers_test.rb similarity index 96% rename from test/helpers_test.rb rename to test/disabled/helpers_test.rb index de60544e..6ed06dfa 100644 --- a/test/helpers_test.rb +++ b/test/disabled/helpers_test.rb @@ -1,4 +1,4 @@ -require File.join(File.dirname(__FILE__), 'test_helper') +require File.join(File.dirname(__FILE__), '..', 'test_helper') class Val @@val = 0 diff --git a/test/private_helpers_test.rb b/test/disabled/private_helpers_test.rb similarity index 91% rename from test/private_helpers_test.rb rename to test/disabled/private_helpers_test.rb index d6119e1f..9c359997 100644 --- a/test/private_helpers_test.rb +++ b/test/disabled/private_helpers_test.rb @@ -1,4 +1,4 @@ -require File.join(File.dirname(__FILE__), 'test_helper') +require File.join(File.dirname(__FILE__), '..', 'test_helper') class PrivateHelpersTest < Test::Unit::TestCase # :nodoc: include ThoughtBot::Shoulda::ActiveRecord diff --git a/test/support/fixtures/posts.yml b/test/fixtures/posts.yml old mode 100755 new mode 100644 similarity index 94% rename from test/support/fixtures/posts.yml rename to test/fixtures/posts.yml index 31bc8445..f5cd7b63 --- a/test/support/fixtures/posts.yml +++ b/test/fixtures/posts.yml @@ -1,5 +1,5 @@ -first: - id: 1 - title: My Cute Kitten! - body: This is totally a cute kitten - user_id: 1 +first: + id: 1 + title: My Cute Kitten! + body: This is totally a cute kitten + user_id: 1 diff --git a/test/support/controllers.rb b/test/fixtures/taggings.yml similarity index 100% rename from test/support/controllers.rb rename to test/fixtures/taggings.yml diff --git a/test/support/fixtures/tags.yml b/test/fixtures/tags.yml old mode 100755 new mode 100644 similarity index 76% rename from test/support/fixtures/tags.yml rename to test/fixtures/tags.yml index 1af71a0a..3ef6292a --- a/test/support/fixtures/tags.yml +++ b/test/fixtures/tags.yml @@ -1,9 +1,9 @@ -first: - id: 1 - name: Stuff -second: - id: 2 - name: Rails -third: - id: 3 +first: + id: 1 + name: Stuff +second: + id: 2 + name: Rails +third: + id: 3 name: Nothing \ No newline at end of file diff --git a/test/support/fixtures/users.yml b/test/fixtures/users.yml old mode 100755 new mode 100644 similarity index 74% rename from test/support/fixtures/users.yml rename to test/fixtures/users.yml index 7172a08a..cfe60c30 --- a/test/support/fixtures/users.yml +++ b/test/fixtures/users.yml @@ -1,6 +1,5 @@ -first: - id: 1 - name: Some dude - company_id: 1 - age: 2 - email: none@none.com +first: + id: 1 + name: Some dude + age: 2 + email: none@none.com diff --git a/test/functional/posts_controller_test.rb b/test/functional/posts_controller_test.rb new file mode 100644 index 00000000..b1f5bff7 --- /dev/null +++ b/test/functional/posts_controller_test.rb @@ -0,0 +1,27 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'posts_controller' + +# Re-raise errors caught by the controller. +class PostsController; def rescue_action(e) raise e end; end + +class PostsControllerTest < Test::Unit::TestCase + load_all_fixtures + + def setup + @controller = PostsController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + @post = Post.find(:first) + end + + should_be_restful do |resource| + resource.parent = :user + + resource.create.params = { :title => "first post", :body => 'blah blah blah'} + resource.update.params = { :title => "changed" } + + # resource.create.redirect = "post_url( record.user, record)" + # resource.update.redirect = "post_url( record.user, record)" + # resource.destroy.redirect = "posts_url(record.user)" + end +end diff --git a/test/functional/users_controller_test.rb b/test/functional/users_controller_test.rb new file mode 100644 index 00000000..f105628e --- /dev/null +++ b/test/functional/users_controller_test.rb @@ -0,0 +1,25 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'users_controller' + +# Re-raise errors caught by the controller. +class UsersController; def rescue_action(e) raise e end; end + +class UsersControllerTest < Test::Unit::TestCase + load_all_fixtures + + def setup + @controller = UsersController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + @user = User.find(:first) + end + + should_be_restful do |resource| + resource.create.params = { :name => "bob", :email => 'bob@bob.com', :age => 13} + resource.update.params = { :name => "sue" } + + resource.create.redirect = "user_url(record)" + resource.update.redirect = "user_url(record)" + resource.destroy.redirect = "users_url" + end +end diff --git a/test/rails_root/Rakefile b/test/rails_root/Rakefile new file mode 100644 index 00000000..3bb0e859 --- /dev/null +++ b/test/rails_root/Rakefile @@ -0,0 +1,10 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require(File.join(File.dirname(__FILE__), 'config', 'boot')) + +require 'rake' +require 'rake/testtask' +require 'rake/rdoctask' + +require 'tasks/rails' diff --git a/test/rails_root/app/controllers/application.rb b/test/rails_root/app/controllers/application.rb new file mode 100644 index 00000000..40f90b68 --- /dev/null +++ b/test/rails_root/app/controllers/application.rb @@ -0,0 +1,7 @@ +# Filters added to this controller apply to all controllers in the application. +# Likewise, all the methods added will be available for all controllers. + +class ApplicationController < ActionController::Base + # Pick a unique cookie name to distinguish our session data from others' + session :session_key => '_rails_root_session_id' +end diff --git a/test/rails_root/app/controllers/posts_controller.rb b/test/rails_root/app/controllers/posts_controller.rb new file mode 100644 index 00000000..28a585b7 --- /dev/null +++ b/test/rails_root/app/controllers/posts_controller.rb @@ -0,0 +1,77 @@ +class PostsController < ApplicationController + before_filter :load_user + + def index + @posts = @user.posts + + respond_to do |format| + format.html # index.rhtml + format.xml { render :xml => @posts.to_xml } + end + end + + def show + @post = @user.posts.find(params[:id]) + + respond_to do |format| + format.html # show.rhtml + format.xml { render :xml => @post.to_xml } + end + end + + def new + @post = @user.posts.build + end + + def edit + @post = @user.posts.find(params[:id]) + end + + def create + @post = @user.posts.build(params[:post]) + + respond_to do |format| + if @post.save + flash[:notice] = 'Post was successfully created.' + format.html { redirect_to post_url(@post.user, @post) } + format.xml { head :created, :location => post_url(@post.user, @post) } + else + format.html { render :action => "new" } + format.xml { render :xml => @post.errors.to_xml } + end + end + end + + def update + @post = @user.posts.find(params[:id]) + + respond_to do |format| + if @post.update_attributes(params[:post]) + flash[:notice] = 'Post was successfully updated.' + format.html { redirect_to post_url(@post) } + format.xml { head :ok } + else + format.html { render :action => "edit" } + format.xml { render :xml => @post.errors.to_xml } + end + end + end + + def destroy + @post = @user.posts.find(params[:id]) + @post.destroy + + flash[:notice] = "Post was removed" + + respond_to do |format| + format.html { redirect_to posts_url } + format.xml { head :ok } + end + end + + private + + def load_user + @user = User.find(params[:user_id]) + end +end diff --git a/test/rails_root/app/controllers/users_controller.rb b/test/rails_root/app/controllers/users_controller.rb new file mode 100644 index 00000000..4fdef93d --- /dev/null +++ b/test/rails_root/app/controllers/users_controller.rb @@ -0,0 +1,81 @@ +class UsersController < ApplicationController + # GET /users + # GET /users.xml + def index + @users = User.find(:all) + + respond_to do |format| + format.html # index.rhtml + format.xml { render :xml => @users.to_xml } + end + end + + # GET /users/1 + # GET /users/1.xml + def show + @user = User.find(params[:id]) + + respond_to do |format| + format.html # show.rhtml + format.xml { render :xml => @user.to_xml } + end + end + + # GET /users/new + def new + @user = User.new + end + + # GET /users/1;edit + def edit + @user = User.find(params[:id]) + end + + # POST /users + # POST /users.xml + def create + @user = User.new(params[:user]) + + respond_to do |format| + if @user.save + flash[:notice] = 'User was successfully created.' + format.html { redirect_to user_url(@user) } + format.xml { head :created, :location => user_url(@user) } + else + format.html { render :action => "new" } + format.xml { render :xml => @user.errors.to_xml } + end + end + end + + # PUT /users/1 + # PUT /users/1.xml + def update + @user = User.find(params[:id]) + + respond_to do |format| + if @user.update_attributes(params[:user]) + flash[:notice] = 'User was successfully updated.' + format.html { redirect_to user_url(@user) } + format.xml { head :ok } + else + format.html { render :action => "edit" } + format.xml { render :xml => @user.errors.to_xml } + end + end + end + + # DELETE /users/1 + # DELETE /users/1.xml + def destroy + @user = User.find(params[:id]) + @user.destroy + + flash[:notice] = "User was removed" + + respond_to do |format| + format.html { redirect_to users_url } + format.xml { head :ok } + end + end +end diff --git a/test/rails_root/app/helpers/application_helper.rb b/test/rails_root/app/helpers/application_helper.rb new file mode 100644 index 00000000..22a7940e --- /dev/null +++ b/test/rails_root/app/helpers/application_helper.rb @@ -0,0 +1,3 @@ +# Methods added to this helper will be available to all templates in the application. +module ApplicationHelper +end diff --git a/test/rails_root/app/helpers/posts_helper.rb b/test/rails_root/app/helpers/posts_helper.rb new file mode 100644 index 00000000..a7b8cec8 --- /dev/null +++ b/test/rails_root/app/helpers/posts_helper.rb @@ -0,0 +1,2 @@ +module PostsHelper +end diff --git a/test/rails_root/app/helpers/users_helper.rb b/test/rails_root/app/helpers/users_helper.rb new file mode 100644 index 00000000..2310a240 --- /dev/null +++ b/test/rails_root/app/helpers/users_helper.rb @@ -0,0 +1,2 @@ +module UsersHelper +end diff --git a/test/rails_root/app/models/post.rb b/test/rails_root/app/models/post.rb new file mode 100644 index 00000000..5b38ae42 --- /dev/null +++ b/test/rails_root/app/models/post.rb @@ -0,0 +1,10 @@ +class Post < ActiveRecord::Base + belongs_to :user + has_many :taggings + has_many :tags, :through => :taggings + + validates_uniqueness_of :title + validates_presence_of :title + validates_presence_of :body, :message => 'Seriously... wtf' + validates_numericality_of :user_id +end diff --git a/test/rails_root/app/models/tag.rb b/test/rails_root/app/models/tag.rb new file mode 100644 index 00000000..9e52fdf2 --- /dev/null +++ b/test/rails_root/app/models/tag.rb @@ -0,0 +1,4 @@ +class Tag < ActiveRecord::Base + has_many :taggings + has_many :posts, :through => :taggings +end diff --git a/test/rails_root/app/models/tagging.rb b/test/rails_root/app/models/tagging.rb new file mode 100644 index 00000000..9b8fb6bd --- /dev/null +++ b/test/rails_root/app/models/tagging.rb @@ -0,0 +1,4 @@ +class Tagging < ActiveRecord::Base + belongs_to :post + belongs_to :tag +end diff --git a/test/rails_root/app/models/user.rb b/test/rails_root/app/models/user.rb new file mode 100644 index 00000000..79f50907 --- /dev/null +++ b/test/rails_root/app/models/user.rb @@ -0,0 +1,8 @@ +class User < ActiveRecord::Base + has_many :posts + + attr_protected :password + validates_format_of :email, :with => /\w*@\w*.com/ + validates_length_of :email, :in => 1..100 + validates_inclusion_of :age, :in => 1..100 +end diff --git a/test/rails_root/app/views/layouts/posts.rhtml b/test/rails_root/app/views/layouts/posts.rhtml new file mode 100644 index 00000000..9a0e16b9 --- /dev/null +++ b/test/rails_root/app/views/layouts/posts.rhtml @@ -0,0 +1,17 @@ + + + + + + Posts: <%= controller.action_name %> + <%= stylesheet_link_tag 'scaffold' %> + + + +

<%= flash[:notice] %>

+ +<%= yield %> + + + diff --git a/test/rails_root/app/views/layouts/users.rhtml b/test/rails_root/app/views/layouts/users.rhtml new file mode 100644 index 00000000..23757aa6 --- /dev/null +++ b/test/rails_root/app/views/layouts/users.rhtml @@ -0,0 +1,17 @@ + + + + + + Users: <%= controller.action_name %> + <%= stylesheet_link_tag 'scaffold' %> + + + +

<%= flash[:notice] %>

+ +<%= yield %> + + + diff --git a/test/rails_root/app/views/posts/edit.rhtml b/test/rails_root/app/views/posts/edit.rhtml new file mode 100644 index 00000000..b45ba5c5 --- /dev/null +++ b/test/rails_root/app/views/posts/edit.rhtml @@ -0,0 +1,27 @@ +

Editing post

+ +<%= error_messages_for :post %> + +<% form_for(:post, :url => post_path(@post.user, @post), :html => { :method => :put }) do |f| %> +

+ User
+ <%= f.text_field :user_id %> +

+ +

+ Title
+ <%= f.text_field :title %> +

+ +

+ Body
+ <%= f.text_area :body %> +

+ +

+ <%= submit_tag "Update" %> +

+<% end %> + +<%= link_to 'Show', post_path(@post.user, @post) %> | +<%= link_to 'Back', posts_path(@post.user) %> \ No newline at end of file diff --git a/test/rails_root/app/views/posts/index.rhtml b/test/rails_root/app/views/posts/index.rhtml new file mode 100644 index 00000000..d4c1713f --- /dev/null +++ b/test/rails_root/app/views/posts/index.rhtml @@ -0,0 +1,24 @@ +

Listing posts

+ + + + + + + + +<% for post in @posts %> + + + + + + + + +<% end %> +
UserTitleBody
<%=h post.user_id %><%=h post.title %><%=h post.body %><%= link_to 'Show', post_path(post.user, post) %><%= link_to 'Edit', edit_post_path(post.user, post) %><%= link_to 'Destroy', post_path(post.user, post), :confirm => 'Are you sure?', :method => :delete %>
+ +
+ +<%= link_to 'New post', new_post_path(post.user) %> \ No newline at end of file diff --git a/test/rails_root/app/views/posts/new.rhtml b/test/rails_root/app/views/posts/new.rhtml new file mode 100644 index 00000000..bae6a34a --- /dev/null +++ b/test/rails_root/app/views/posts/new.rhtml @@ -0,0 +1,26 @@ +

New post

+ +<%= error_messages_for :post %> + +<% form_for(:post, :url => posts_path(@user)) do |f| %> +

+ User
+ <%= f.text_field :user_id %> +

+ +

+ Title
+ <%= f.text_field :title %> +

+ +

+ Body
+ <%= f.text_area :body %> +

+ +

+ <%= submit_tag "Create" %> +

+<% end %> + +<%= link_to 'Back', posts_path(@user) %> \ No newline at end of file diff --git a/test/rails_root/app/views/posts/show.rhtml b/test/rails_root/app/views/posts/show.rhtml new file mode 100644 index 00000000..393bb74f --- /dev/null +++ b/test/rails_root/app/views/posts/show.rhtml @@ -0,0 +1,18 @@ +

+ User: + <%=h @post.user_id %> +

+ +

+ Title: + <%=h @post.title %> +

+ +

+ Body: + <%=h @post.body %> +

+ + +<%= link_to 'Edit', edit_post_path(@post.user, @post) %> | +<%= link_to 'Back', posts_path(@post.user) %> \ No newline at end of file diff --git a/test/rails_root/app/views/users/edit.rhtml b/test/rails_root/app/views/users/edit.rhtml new file mode 100644 index 00000000..9c47ad56 --- /dev/null +++ b/test/rails_root/app/views/users/edit.rhtml @@ -0,0 +1,22 @@ +

Editing user

+ +<%= error_messages_for :user %> + +<% form_for(:user, :url => user_path(@user), :html => { :method => :put }) do |f| %> +

+ Email
+ <%= f.text_field :email %> +

+ +

+ Age
+ <%= f.text_field :age %> +

+ +

+ <%= submit_tag "Update" %> +

+<% end %> + +<%= link_to 'Show', user_path(@user) %> | +<%= link_to 'Back', users_path %> \ No newline at end of file diff --git a/test/rails_root/app/views/users/index.rhtml b/test/rails_root/app/views/users/index.rhtml new file mode 100644 index 00000000..83f2e91a --- /dev/null +++ b/test/rails_root/app/views/users/index.rhtml @@ -0,0 +1,22 @@ +

Listing users

+ + + + + + + +<% for user in @users %> + + + + + + + +<% end %> +
EmailAge
<%=h user.email %><%=h user.age %><%= link_to 'Show', user_path(user) %><%= link_to 'Edit', edit_user_path(user) %><%= link_to 'Destroy', user_path(user), :confirm => 'Are you sure?', :method => :delete %>
+ +
+ +<%= link_to 'New user', new_user_path %> \ No newline at end of file diff --git a/test/rails_root/app/views/users/new.rhtml b/test/rails_root/app/views/users/new.rhtml new file mode 100644 index 00000000..6f2c3a48 --- /dev/null +++ b/test/rails_root/app/views/users/new.rhtml @@ -0,0 +1,21 @@ +

New user

+ +<%= error_messages_for :user %> + +<% form_for(:user, :url => users_path) do |f| %> +

+ Email
+ <%= f.text_field :email %> +

+ +

+ Age
+ <%= f.text_field :age %> +

+ +

+ <%= submit_tag "Create" %> +

+<% end %> + +<%= link_to 'Back', users_path %> \ No newline at end of file diff --git a/test/rails_root/app/views/users/show.rhtml b/test/rails_root/app/views/users/show.rhtml new file mode 100644 index 00000000..bdcad8ad --- /dev/null +++ b/test/rails_root/app/views/users/show.rhtml @@ -0,0 +1,13 @@ +

+ Email: + <%=h @user.email %> +

+ +

+ Age: + <%=h @user.age %> +

+ + +<%= link_to 'Edit', edit_user_path(@user) %> | +<%= link_to 'Back', users_path %> \ No newline at end of file diff --git a/test/rails_root/config/boot.rb b/test/rails_root/config/boot.rb new file mode 100644 index 00000000..b7af0c35 --- /dev/null +++ b/test/rails_root/config/boot.rb @@ -0,0 +1,45 @@ +# Don't change this file. Configuration is done in config/environment.rb and config/environments/*.rb + +unless defined?(RAILS_ROOT) + root_path = File.join(File.dirname(__FILE__), '..') + + unless RUBY_PLATFORM =~ /(:?mswin|mingw)/ + require 'pathname' + root_path = Pathname.new(root_path).cleanpath(true).to_s + end + + RAILS_ROOT = root_path +end + +unless defined?(Rails::Initializer) + if File.directory?("#{RAILS_ROOT}/vendor/rails") + require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer" + else + require 'rubygems' + + environment_without_comments = IO.readlines(File.dirname(__FILE__) + '/environment.rb').reject { |l| l =~ /^#/ }.join + environment_without_comments =~ /[^#]RAILS_GEM_VERSION = '([\d.]+)'/ + rails_gem_version = $1 + + if version = defined?(RAILS_GEM_VERSION) ? RAILS_GEM_VERSION : rails_gem_version + # Asking for 1.1.6 will give you 1.1.6.5206, if available -- makes it easier to use beta gems + rails_gem = Gem.cache.search('rails', "~>#{version}.0").sort_by { |g| g.version.version }.last + + if rails_gem + gem "rails", "=#{rails_gem.version.version}" + require rails_gem.full_gem_path + '/lib/initializer' + else + STDERR.puts %(Cannot find gem for Rails ~>#{version}.0: + Install the missing gem with 'gem install -v=#{version} rails', or + change environment.rb to define RAILS_GEM_VERSION with your desired version. + ) + exit 1 + end + else + gem "rails" + require 'initializer' + end + end + + Rails::Initializer.run(:set_load_path) +end diff --git a/test/rails_root/config/database.yml b/test/rails_root/config/database.yml new file mode 100644 index 00000000..dd7027f8 --- /dev/null +++ b/test/rails_root/config/database.yml @@ -0,0 +1,4 @@ +sqlite3: + :adapter: sqlite3 + # :dbfile: db/sqlite3.db + :dbfile: ":memory:" diff --git a/test/rails_root/config/environment.rb b/test/rails_root/config/environment.rb new file mode 100644 index 00000000..e3f7a75c --- /dev/null +++ b/test/rails_root/config/environment.rb @@ -0,0 +1,14 @@ +# Specifies gem version of Rails to use when vendor/rails is not present +#RAILS_GEM_VERSION = '1.1.6' + +require File.join(File.dirname(__FILE__), 'boot') + +Rails::Initializer.run do |config| + config.log_level = :debug + config.cache_classes = false + config.whiny_nils = true + config.breakpoint_server = true + config.load_paths << File.join(File.dirname(__FILE__), *%w{.. .. .. lib}) +end + +Dependencies.log_activity = true \ No newline at end of file diff --git a/test/rails_root/config/environments/sqlite3.rb b/test/rails_root/config/environments/sqlite3.rb new file mode 100644 index 00000000..e69de29b diff --git a/test/rails_root/config/routes.rb b/test/rails_root/config/routes.rb new file mode 100644 index 00000000..d67e2c6d --- /dev/null +++ b/test/rails_root/config/routes.rb @@ -0,0 +1,5 @@ +ActionController::Routing::Routes.draw do |map| + map.resources :users do |user| + user.resources :posts + end +end diff --git a/test/rails_root/db/migrate/001_create_users.rb b/test/rails_root/db/migrate/001_create_users.rb new file mode 100644 index 00000000..3c6423e1 --- /dev/null +++ b/test/rails_root/db/migrate/001_create_users.rb @@ -0,0 +1,13 @@ +class CreateUsers < ActiveRecord::Migration + def self.up + create_table :users do |t| + t.column :name, :string + t.column :email, :string + t.column :age, :integer + end + end + + def self.down + drop_table :users + end +end diff --git a/test/rails_root/db/migrate/002_create_posts.rb b/test/rails_root/db/migrate/002_create_posts.rb new file mode 100644 index 00000000..9ed4debd --- /dev/null +++ b/test/rails_root/db/migrate/002_create_posts.rb @@ -0,0 +1,13 @@ +class CreatePosts < ActiveRecord::Migration + def self.up + create_table :posts do |t| + t.column :user_id, :integer + t.column :title, :string + t.column :body, :text + end + end + + def self.down + drop_table :posts + end +end diff --git a/test/rails_root/db/migrate/003_create_taggings.rb b/test/rails_root/db/migrate/003_create_taggings.rb new file mode 100644 index 00000000..7fa88580 --- /dev/null +++ b/test/rails_root/db/migrate/003_create_taggings.rb @@ -0,0 +1,12 @@ +class CreateTaggings < ActiveRecord::Migration + def self.up + create_table :taggings do |t| + t.column :user_id, :integer + t.column :tag_id, :integer + end + end + + def self.down + drop_table :taggings + end +end diff --git a/test/rails_root/db/migrate/004_create_tags.rb b/test/rails_root/db/migrate/004_create_tags.rb new file mode 100644 index 00000000..dc58c4f3 --- /dev/null +++ b/test/rails_root/db/migrate/004_create_tags.rb @@ -0,0 +1,11 @@ +class CreateTags < ActiveRecord::Migration + def self.up + create_table :tags do |t| + t.column :name, :string + end + end + + def self.down + drop_table :tags + end +end diff --git a/test/rails_root/db/schema.rb b/test/rails_root/db/schema.rb new file mode 100644 index 00000000..e69de29b diff --git a/test/rails_root/doc/README_FOR_APP b/test/rails_root/doc/README_FOR_APP new file mode 100644 index 00000000..ac6c1491 --- /dev/null +++ b/test/rails_root/doc/README_FOR_APP @@ -0,0 +1,2 @@ +Use this README file to introduce your application and point to useful places in the API for learning more. +Run "rake appdoc" to generate API documentation for your models and controllers. \ No newline at end of file diff --git a/test/rails_root/log/development.log b/test/rails_root/log/development.log new file mode 100644 index 00000000..9b983a1d --- /dev/null +++ b/test/rails_root/log/development.log @@ -0,0 +1,4 @@ + SQL (0.000000) SQLite3::SQLException: no such table: schema_info: SELECT * FROM schema_info + SQL (0.000207) SELECT name FROM sqlite_master WHERE type = 'table' + SQL (0.000000) SQLite3::SQLException: no such table: schema_info: SELECT * FROM schema_info + SQL (0.000208) SELECT name FROM sqlite_master WHERE type = 'table' diff --git a/test/rails_root/log/production.log b/test/rails_root/log/production.log new file mode 100644 index 00000000..e69de29b diff --git a/test/rails_root/log/server.log b/test/rails_root/log/server.log new file mode 100644 index 00000000..e69de29b diff --git a/test/rails_root/log/sqlite3.log b/test/rails_root/log/sqlite3.log new file mode 100644 index 00000000..67ec096e --- /dev/null +++ b/test/rails_root/log/sqlite3.log @@ -0,0 +1,89735 @@ +# Logfile created on Wed Jun 27 16:47:46 -0400 2007 by logger.rb/1.5.2.9 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000402) SELECT version FROM schema_info + SQL (0.000287) SELECT version FROM schema_info + SQL (0.000277) SELECT version FROM schema_info + SQL (0.000246) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: ContextTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: HelpersTest, Val +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: PrivateHelpersTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000378) SELECT version FROM schema_info + SQL (0.000239) SELECT version FROM schema_info + SQL (0.000229) SELECT version FROM schema_info + SQL (0.000219) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: ContextTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: HelpersTest, Val +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: PrivateHelpersTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000337) SELECT version FROM schema_info + SQL (0.000235) SELECT version FROM schema_info + SQL (0.000218) SELECT version FROM schema_info + SQL (0.000227) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: ContextTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: HelpersTest, Val +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: PrivateHelpersTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/disabled/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/disabled/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/disabled/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000471) SELECT version FROM schema_info + SQL (0.000322) SELECT version FROM schema_info + SQL (0.000305) SELECT version FROM schema_info + SQL (0.000305) SELECT version FROM schema_info +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/models/post +Dependencies: called load_file("test/disabled/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/models/user +Dependencies: called load_file("test/disabled/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: ContextTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: HelpersTest, Val +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: PrivateHelpersTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/disabled/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/disabled/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/disabled/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/disabled/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/disabled/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/disabled/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/disabled/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.004830) CREATE TABLE schema_info (version integer) + SQL (0.002937) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000387) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.002845) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.003310) UPDATE schema_info SET version = 1 + SQL (0.000477) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.002839) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.002516) UPDATE schema_info SET version = 2 + SQL (0.000431) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.003039) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.002720) UPDATE schema_info SET version = 3 + SQL (0.000583) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.003062) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.002607) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/models/post +Dependencies: called load_file("test/disabled/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/models/user +Dependencies: called load_file("test/disabled/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: ContextTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: HelpersTest, Val +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: PrivateHelpersTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000335) SELECT version FROM schema_info + SQL (0.000233) SELECT version FROM schema_info + SQL (0.000228) SELECT version FROM schema_info + SQL (0.000220) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/disabled/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/disabled/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/disabled/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000317) SELECT version FROM schema_info + SQL (0.000235) SELECT version FROM schema_info + SQL (0.000221) SELECT version FROM schema_info + SQL (0.000220) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/disabled/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/disabled/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/disabled/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/disabled/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000351) SELECT version FROM schema_info + SQL (0.000229) SELECT version FROM schema_info + SQL (0.000229) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000361) SELECT version FROM schema_info + SQL (0.000223) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info + SQL (0.000219) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.003635) CREATE TABLE schema_info (version integer) + SQL (0.002146) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000389) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.003073) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.003358) UPDATE schema_info SET version = 1 + SQL (0.000453) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.002845) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.002568) UPDATE schema_info SET version = 2 + SQL (0.000426) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.003207) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.002743) UPDATE schema_info SET version = 3 + SQL (0.000424) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.003381) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.003096) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000354) SELECT version FROM schema_info + SQL (0.000223) SELECT version FROM schema_info + SQL (0.000278) SELECT version FROM schema_info + SQL (0.000224) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000337) SELECT version FROM schema_info + SQL (0.000233) SELECT version FROM schema_info + SQL (0.000216) SELECT version FROM schema_info + SQL (0.000224) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000348) SELECT version FROM schema_info + SQL (0.000237) SELECT version FROM schema_info + SQL (0.000218) SELECT version FROM schema_info + SQL (0.000234) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000358) SELECT version FROM schema_info + SQL (0.000239) SELECT version FROM schema_info + SQL (0.000221) SELECT version FROM schema_info + SQL (0.000232) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000365) SELECT version FROM schema_info + SQL (0.000232) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000504) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 11:59:48) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000187) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.06653 (15 reqs/sec) | Rendering: 0.06338 (95%) | DB: 0.00174 (2%) | 200 OK [http://test.host/posts?post=] + SQL (0.000306) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000359) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 11:59:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000392) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000484)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00235 (426 reqs/sec) | DB: 0.00154 (65%) | 302 Found [http://test.host/posts/1] + SQL (0.000242) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 11:59:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000410) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00577 (173 reqs/sec) | Rendering: 0.00491 (85%) | DB: 0.00065 (11%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 11:59:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000555) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00689 (145 reqs/sec) | Rendering: 0.00516 (74%) | DB: 0.00056 (8%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 11:59:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00221 (452 reqs/sec) | Rendering: 0.00205 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 11:59:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000460) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00420 (238 reqs/sec) | Rendering: 0.00295 (70%) | DB: 0.00046 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 11:59:48) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000420) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000282) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00475 (210 reqs/sec) | Rendering: 0.00262 (55%) | DB: 0.00070 (14%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000362) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 11:59:48) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.03038 (32 reqs/sec) | Rendering: 0.02768 (91%) | DB: 0.00036 (1%) | 200 OK [http://test.host/users?user=] + SQL (0.000342) SELECT count(*) AS count_all FROM users  + SQL (0.000356) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 11:59:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000441) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000494)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00256 (391 reqs/sec) | DB: 0.00163 (63%) | 302 Found [http://test.host/users/1] + SQL (0.000341) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 11:59:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000441) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00515 (194 reqs/sec) | Rendering: 0.00420 (81%) | DB: 0.00078 (15%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 11:59:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000495) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00525 (190 reqs/sec) | Rendering: 0.00408 (77%) | DB: 0.00049 (9%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 11:59:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00159 (628 reqs/sec) | Rendering: 0.00146 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 11:59:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000398) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00409 (244 reqs/sec) | Rendering: 0.00302 (73%) | DB: 0.00040 (9%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 11:59:48) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000467) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00423 (236 reqs/sec) | Rendering: 0.00256 (60%) | DB: 0.00047 (11%) | 200 OK [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000344) SELECT version FROM schema_info + SQL (0.000231) SELECT version FROM schema_info + SQL (0.000216) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000533) SELECT version FROM schema_info + SQL (0.000290) SELECT version FROM schema_info + SQL (0.000246) SELECT version FROM schema_info + SQL (0.000236) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000402) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:00:48) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000215) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00852 (117 reqs/sec) | Rendering: 0.00503 (59%) | DB: 0.00192 (22%) | 200 OK [http://test.host/posts?post=] + SQL (0.000236) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000320) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:00:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000374) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000434)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00223 (448 reqs/sec) | DB: 0.00136 (61%) | 302 Found [http://test.host/posts/1] + SQL (0.000220) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:00:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000418) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00449 (222 reqs/sec) | Rendering: 0.00360 (80%) | DB: 0.00064 (14%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:00:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000471) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00479 (208 reqs/sec) | Rendering: 0.00366 (76%) | DB: 0.00047 (9%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:00:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00178 (561 reqs/sec) | Rendering: 0.00165 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:00:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000388) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00306 (326 reqs/sec) | Rendering: 0.00200 (65%) | DB: 0.00039 (12%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:00:48) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000442) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000318) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00485 (206 reqs/sec) | Rendering: 0.00219 (45%) | DB: 0.00076 (15%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000351) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:00:48) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00675 (148 reqs/sec) | Rendering: 0.00451 (66%) | DB: 0.00035 (5%) | 200 OK [http://test.host/users?user=] + SQL (0.000265) SELECT count(*) AS count_all FROM users  + SQL (0.000294) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:00:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.002490) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000421)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00426 (234 reqs/sec) | DB: 0.00347 (81%) | 302 Found [http://test.host/users/1] + SQL (0.000247) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:00:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000426) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00659 (151 reqs/sec) | Rendering: 0.00569 (86%) | DB: 0.00067 (10%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:00:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000448) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00463 (215 reqs/sec) | Rendering: 0.00354 (76%) | DB: 0.00045 (9%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:00:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00155 (646 reqs/sec) | Rendering: 0.00142 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:00:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000395) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00293 (341 reqs/sec) | Rendering: 0.00188 (63%) | DB: 0.00040 (13%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:00:48) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000382) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00338 (295 reqs/sec) | Rendering: 0.00205 (60%) | DB: 0.00038 (11%) | 200 OK [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000365) SELECT version FROM schema_info + SQL (0.000234) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000359) SELECT version FROM schema_info + SQL (0.000228) SELECT version FROM schema_info + SQL (0.000223) SELECT version FROM schema_info + SQL (0.000222) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000393) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:03:49) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000290) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00883 (113 reqs/sec) | Rendering: 0.00509 (57%) | DB: 0.00172 (19%) | 200 OK [http://test.host/posts?post=] + SQL (0.000342) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000465) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:03:49) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000501) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000487)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00558 (179 reqs/sec) | DB: 0.00180 (32%) | 302 Found [http://test.host/posts/1] + SQL (0.000436) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:03:49) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000547) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00572 (174 reqs/sec) | Rendering: 0.00461 (80%) | DB: 0.00098 (17%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:03:49) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000694) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00599 (166 reqs/sec) | Rendering: 0.00438 (73%) | DB: 0.00069 (11%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:03:49) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00226 (441 reqs/sec) | Rendering: 0.00209 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:03:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000529) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00254 (64%) | DB: 0.00053 (13%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:03:49) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000584) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000464) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00614 (162 reqs/sec) | Rendering: 0.00307 (50%) | DB: 0.00105 (17%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000382) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:03:49) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00871 (114 reqs/sec) | Rendering: 0.00560 (64%) | DB: 0.00038 (4%) | 200 OK [http://test.host/users?user=] + SQL (0.000438) SELECT count(*) AS count_all FROM users  + SQL (0.000465) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:03:49) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000470) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000478)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00534 (187 reqs/sec) | DB: 0.00185 (34%) | 302 Found [http://test.host/users/1] + SQL (0.000481) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:03:49) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000562) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00527 (189 reqs/sec) | Rendering: 0.00413 (78%) | DB: 0.00104 (19%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:03:49) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000607) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00576 (173 reqs/sec) | Rendering: 0.00433 (75%) | DB: 0.00061 (10%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:03:49) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00209 (478 reqs/sec) | Rendering: 0.00192 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:03:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000567) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00384 (260 reqs/sec) | Rendering: 0.00234 (60%) | DB: 0.00057 (14%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:03:49) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000482) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00456 (219 reqs/sec) | Rendering: 0.00269 (58%) | DB: 0.00048 (10%) | 200 OK [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000349) SELECT version FROM schema_info + SQL (0.000234) SELECT version FROM schema_info + SQL (0.000217) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000359) SELECT version FROM schema_info + SQL (0.000229) SELECT version FROM schema_info + SQL (0.000222) SELECT version FROM schema_info + SQL (0.000222) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000393) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:03:53) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000295) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00957 (104 reqs/sec) | Rendering: 0.00569 (59%) | DB: 0.00172 (17%) | 200 OK [http://test.host/posts?post=] + SQL (0.000411) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000458) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:03:53) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000464) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000494)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00538 (185 reqs/sec) | DB: 0.00183 (33%) | 302 Found [http://test.host/posts/1] + SQL (0.000441) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:03:53) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000520) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00555 (180 reqs/sec) | Rendering: 0.00449 (80%) | DB: 0.00096 (17%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:03:53) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000666) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00593 (168 reqs/sec) | Rendering: 0.00439 (74%) | DB: 0.00067 (11%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:03:53) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00242 (413 reqs/sec) | Rendering: 0.00222 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:03:53) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000527) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00395 (252 reqs/sec) | Rendering: 0.00255 (64%) | DB: 0.00053 (13%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:03:53) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000516) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000427) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00581 (172 reqs/sec) | Rendering: 0.00297 (51%) | DB: 0.00094 (16%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000382) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:03:53) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00808 (123 reqs/sec) | Rendering: 0.00518 (64%) | DB: 0.00038 (4%) | 200 OK [http://test.host/users?user=] + SQL (0.000378) SELECT count(*) AS count_all FROM users  + SQL (0.000459) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:03:53) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000482) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000487)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00517 (193 reqs/sec) | DB: 0.00181 (34%) | 302 Found [http://test.host/users/1] + SQL (0.000512) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:03:53) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000494) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00510 (196 reqs/sec) | Rendering: 0.00409 (80%) | DB: 0.00101 (19%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:03:53) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000613) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00591 (169 reqs/sec) | Rendering: 0.00446 (75%) | DB: 0.00061 (10%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:03:53) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00209 (478 reqs/sec) | Rendering: 0.00192 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:03:53) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000491) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00361 (276 reqs/sec) | Rendering: 0.00229 (63%) | DB: 0.00049 (13%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:03:53) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000505) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00456 (219 reqs/sec) | Rendering: 0.00265 (58%) | DB: 0.00050 (11%) | 200 OK [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000339) SELECT version FROM schema_info + SQL (0.000240) SELECT version FROM schema_info + SQL (0.000249) SELECT version FROM schema_info + SQL (0.000309) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000356) SELECT version FROM schema_info + SQL (0.000237) SELECT version FROM schema_info + SQL (0.000242) SELECT version FROM schema_info + SQL (0.000225) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000422) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:05:10) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000337) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00916 (109 reqs/sec) | Rendering: 0.00513 (55%) | DB: 0.00182 (19%) | 200 OK [http://test.host/posts?post=] + SQL (0.000355) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000357) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:05:10) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000382) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000389)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00475 (210 reqs/sec) | DB: 0.00148 (31%) | 302 Found [http://test.host/posts/1] + SQL (0.000433) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:05:11) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000531) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00563 (177 reqs/sec) | Rendering: 0.00455 (80%) | DB: 0.00096 (17%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:05:11) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000718) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00601 (166 reqs/sec) | Rendering: 0.00444 (73%) | DB: 0.00072 (11%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:05:11) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00228 (439 reqs/sec) | Rendering: 0.00208 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:05:11) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000535) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00412 (242 reqs/sec) | Rendering: 0.00272 (66%) | DB: 0.00054 (12%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:05:11) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000737) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000466) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00616 (162 reqs/sec) | Rendering: 0.00276 (44%) | DB: 0.00120 (19%) | 200 OK [http://test.host/posts/1?post=] + User Load (0.000533) SELECT * FROM users LIMIT 1 + User Update (0.000709) UPDATE users SET "email" = 'a@b.com', "age" = 1 WHERE "id" = 1 + User Load (0.000456) SELECT * FROM users LIMIT 1 + User Update (0.000510) UPDATE users SET "email" = 'asdf@asdf.com', "age" = 1 WHERE "id" = 1 + User Load (0.000462) SELECT * FROM users LIMIT 1 + User Load (0.000518) SELECT * FROM users LIMIT 1 + User Load (0.000523) SELECT * FROM users LIMIT 1 + User Load (0.000517) SELECT * FROM users LIMIT 1 + User Load (0.000550) SELECT * FROM users LIMIT 1 + User Load (0.000512) SELECT * FROM users LIMIT 1 + User Load (0.000507) SELECT * FROM users LIMIT 1 + SQL (0.000467) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:05:11) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00791 (126 reqs/sec) | Rendering: 0.00543 (68%) | DB: 0.00626 (79%) | 200 OK [http://test.host/users?user=] + SQL (0.000431) SELECT count(*) AS count_all FROM users  + SQL (0.000449) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:05:11) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000454) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000470)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00471 (212 reqs/sec) | DB: 0.00180 (38%) | 302 Found [http://test.host/users/1] + SQL (0.000479) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:05:11) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000607) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00535 (186 reqs/sec) | Rendering: 0.00414 (77%) | DB: 0.00109 (20%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:05:11) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000615) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00590 (169 reqs/sec) | Rendering: 0.00441 (74%) | DB: 0.00061 (10%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:05:11) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00236 (423 reqs/sec) | Rendering: 0.00218 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:05:11) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000495) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00378 (264 reqs/sec) | Rendering: 0.00244 (64%) | DB: 0.00049 (13%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:05:11) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000575) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00622 (160 reqs/sec) | Rendering: 0.00405 (65%) | DB: 0.00058 (9%) | 200 OK [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000343) SELECT version FROM schema_info + SQL (0.000239) SELECT version FROM schema_info + SQL (0.000224) SELECT version FROM schema_info + SQL (0.000240) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000327) SELECT version FROM schema_info + SQL (0.000237) SELECT version FROM schema_info + SQL (0.000222) SELECT version FROM schema_info + SQL (0.000222) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000392) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:06:33) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000305) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.01057 (94 reqs/sec) | Rendering: 0.00548 (51%) | DB: 0.00170 (16%) | 200 OK [http://test.host/posts?post=] + SQL (0.000354) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000472) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:06:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000491) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000559)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00558 (179 reqs/sec) | DB: 0.00188 (33%) | 302 Found [http://test.host/posts/1] + SQL (0.000436) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:06:33) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000527) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00566 (176 reqs/sec) | Rendering: 0.00460 (81%) | DB: 0.00096 (17%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:06:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000541) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00525 (190 reqs/sec) | Rendering: 0.00388 (73%) | DB: 0.00054 (10%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:06:33) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00225 (443 reqs/sec) | Rendering: 0.00208 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:06:33) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000540) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00403 (248 reqs/sec) | Rendering: 0.00263 (65%) | DB: 0.00054 (13%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:06:33) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000526) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000265) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000497) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00699 (143 reqs/sec) | DB: 0.00129 (18%) | 302 Found [http://test.host/posts/1?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000367) SELECT version FROM schema_info + SQL (0.000236) SELECT version FROM schema_info + SQL (0.000218) SELECT version FROM schema_info + SQL (0.000227) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000330) SELECT version FROM schema_info + SQL (0.000228) SELECT version FROM schema_info + SQL (0.000223) SELECT version FROM schema_info + SQL (0.000219) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000415) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:12:12) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000293) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00869 (115 reqs/sec) | Rendering: 0.00499 (57%) | DB: 0.00171 (19%) | 200 OK [http://test.host/posts?post=] + SQL (0.000327) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000461) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:12:12) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000536) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000534)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00661 (151 reqs/sec) | DB: 0.00186 (28%) | 302 Found [http://test.host/posts/1] + SQL (0.000442) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:12:12) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000602) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00580 (172 reqs/sec) | Rendering: 0.00459 (79%) | DB: 0.00104 (17%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:12:12) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000505) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00524 (190 reqs/sec) | Rendering: 0.00393 (74%) | DB: 0.00050 (9%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:12:12) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00226 (443 reqs/sec) | Rendering: 0.00208 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:12:12) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000531) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00425 (235 reqs/sec) | Rendering: 0.00279 (65%) | DB: 0.00053 (12%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:12:12) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000546) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000313) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000554) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00747 (133 reqs/sec) | DB: 0.00141 (18%) | 302 Found [http://test.host/posts/1?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000348) SELECT version FROM schema_info + SQL (0.000238) SELECT version FROM schema_info + SQL (0.000221) SELECT version FROM schema_info + SQL (0.000229) SELECT version FROM schema_info +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000331) SELECT version FROM schema_info + SQL (0.000228) SELECT version FROM schema_info + SQL (0.000221) SELECT version FROM schema_info + SQL (0.000219) SELECT version FROM schema_info +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000390) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:12:38) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000291) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00878 (113 reqs/sec) | Rendering: 0.00505 (57%) | DB: 0.00168 (19%) | 200 OK [http://test.host/posts?post=] + SQL (0.000356) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000381) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:12:38) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000489) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000598)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00464 (215 reqs/sec) | DB: 0.00182 (39%) | 302 Found [http://test.host/posts/1] + SQL (0.000377) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:12:38) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000527) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00575 (173 reqs/sec) | Rendering: 0.00469 (81%) | DB: 0.00090 (15%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:12:38) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000585) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00464 (215 reqs/sec) | Rendering: 0.00324 (69%) | DB: 0.00058 (12%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:12:38) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00227 (439 reqs/sec) | Rendering: 0.00210 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:12:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000529) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00394 (253 reqs/sec) | Rendering: 0.00253 (64%) | DB: 0.00053 (13%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:12:38) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000551) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000357) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000586) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00697 (143 reqs/sec) | DB: 0.00149 (21%) | 302 Found [http://test.host/posts/1?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000590) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000288) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000216) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000266) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000214) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:13:31) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000174) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00800 (124 reqs/sec) | Rendering: 0.00501 (62%) | DB: 0.00278 (34%) | 200 OK [http://test.host/posts?post=] + SQL (0.000286) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000259) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:13:31) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000365) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000094)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00187 (535 reqs/sec) | DB: 0.00100 (53%) | 302 Found [http://test.host/posts/1] + SQL (0.000221) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:13:31) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000300) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00455 (219 reqs/sec) | Rendering: 0.00379 (83%) | DB: 0.00052 (11%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:13:31) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000315) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00398 (251 reqs/sec) | Rendering: 0.00302 (75%) | DB: 0.00031 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:13:31) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00177 (564 reqs/sec) | Rendering: 0.00164 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:13:31) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000292) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00296 (338 reqs/sec) | Rendering: 0.00204 (68%) | DB: 0.00029 (9%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:13:31) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000332) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000136) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000121) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00291 (343 reqs/sec) | DB: 0.00059 (20%) | 302 Found [http://test.host/posts/1?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000597) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000279) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000308) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 1 + SQL (0.000184) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000234) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000238) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000250) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000222) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000210) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:13:57) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00707 (141 reqs/sec) | Rendering: 0.00434 (61%) | DB: 0.00273 (38%) | 200 OK [http://test.host/posts?post=] + SQL (0.000239) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000196) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:13:57) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000276) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000089)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00161 (621 reqs/sec) | DB: 0.00080 (49%) | 302 Found [http://test.host/posts/1] + SQL (0.000208) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:13:57) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000286) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00424 (236 reqs/sec) | Rendering: 0.00354 (83%) | DB: 0.00049 (11%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:13:57) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000361) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00428 (233 reqs/sec) | Rendering: 0.00323 (75%) | DB: 0.00036 (8%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:13:57) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00220 (453 reqs/sec) | Rendering: 0.00203 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:13:57) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000332) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00305 (327 reqs/sec) | Rendering: 0.00202 (66%) | DB: 0.00033 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:13:57) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000326) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000143) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000123) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00300 (333 reqs/sec) | DB: 0.00059 (19%) | 302 Found [http://test.host/posts/1?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000599) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000303) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000307) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000103) UPDATE schema_info SET version = 1 + SQL (0.000198) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000252) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 2 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000258) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000103) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000229) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000274) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000255) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 2 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000244) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 3 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000228) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000211) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:14:35) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00759 (131 reqs/sec) | Rendering: 0.00482 (63%) | DB: 0.00290 (38%) | 200 OK [http://test.host/posts?post=] + SQL (0.000256) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000198) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:14:35) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000293) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000134)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00216 (463 reqs/sec) | DB: 0.00088 (40%) | 302 Found [http://test.host/posts/1] + SQL (0.000235) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:14:35) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000307) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00418 (239 reqs/sec) | Rendering: 0.00345 (82%) | DB: 0.00054 (12%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:14:35) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000276) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00400 (249 reqs/sec) | Rendering: 0.00314 (78%) | DB: 0.00028 (6%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:14:35) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00170 (587 reqs/sec) | Rendering: 0.00157 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:14:35) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000273) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00282 (354 reqs/sec) | Rendering: 0.00193 (68%) | DB: 0.00027 (9%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:14:35) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000315) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000132) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00279 (358 reqs/sec) | DB: 0.00056 (20%) | 302 Found [http://test.host/posts/1?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000608) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000308) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000098) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000237) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 2 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000251) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000103) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000223) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000102) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000284) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000237) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000223) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000099) UPDATE schema_info SET version = 3 + SQL (0.000183) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000230) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000209) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:30:31) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000140) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00763 (131 reqs/sec) | Rendering: 0.00489 (64%) | DB: 0.00287 (37%) | 200 OK [http://test.host/posts?post=] + SQL (0.000248) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:30:31) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000371) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000122)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00206 (485 reqs/sec) | DB: 0.00094 (45%) | 302 Found [http://test.host/posts/1] + SQL (0.000224) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:30:31) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000338) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00517 (193 reqs/sec) | Rendering: 0.00435 (84%) | DB: 0.00056 (10%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:30:31) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000264) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00520 (192 reqs/sec) | Rendering: 0.00434 (83%) | DB: 0.00026 (5%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:30:31) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00223 (447 reqs/sec) | Rendering: 0.00207 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:30:31) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000366) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00447 (223 reqs/sec) | Rendering: 0.00331 (74%) | DB: 0.00037 (8%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:30:31) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000369) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000172) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000144) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00350 (285 reqs/sec) | DB: 0.00068 (19%) | 302 Found [http://test.host/posts/1?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000589) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000259) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000307) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000234) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 2 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000259) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000103) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000216) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000099) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000327) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000270) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 1 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000237) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 2 + SQL (0.000189) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000228) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000309) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000107) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000264) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:31:05) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000143) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00729 (137 reqs/sec) | Rendering: 0.00450 (61%) | DB: 0.00302 (41%) | 200 OK [http://test.host/posts?post=] + SQL (0.000248) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000204) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:31:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000307) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000170)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00203 (493 reqs/sec) | DB: 0.00093 (45%) | 302 Found [http://test.host/posts/1] + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:31:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000367) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00442 (226 reqs/sec) | Rendering: 0.00354 (79%) | DB: 0.00059 (13%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:31:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000295) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00383 (261 reqs/sec) | Rendering: 0.00292 (76%) | DB: 0.00029 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:31:05) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00190 (525 reqs/sec) | Rendering: 0.00177 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:31:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000359) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00312 (321 reqs/sec) | Rendering: 0.00203 (65%) | DB: 0.00036 (11%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:31:05) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000316) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00276 (361 reqs/sec) | DB: 0.00056 (20%) | 302 Found [http://test.host/posts/1?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000604) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000310) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000098) UPDATE schema_info SET version = 1 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000255) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000275) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000117) UPDATE schema_info SET version = 3 + SQL (0.000198) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000275) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000112) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000274) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000245) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000263) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 3 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000227) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000213) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:33:06) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00748 (133 reqs/sec) | Rendering: 0.00472 (63%) | DB: 0.00292 (39%) | 200 OK [http://test.host/posts?post=] + SQL (0.000257) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000198) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:33:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000312) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000131)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00206 (486 reqs/sec) | DB: 0.00090 (43%) | 302 Found [http://test.host/posts/1] + SQL (0.000219) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:33:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000339) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00457 (218 reqs/sec) | Rendering: 0.00374 (81%) | DB: 0.00056 (12%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:33:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000269) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00372 (268 reqs/sec) | Rendering: 0.00286 (76%) | DB: 0.00027 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:33:06) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00176 (567 reqs/sec) | Rendering: 0.00162 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:33:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000276) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00309 (323 reqs/sec) | Rendering: 0.00218 (70%) | DB: 0.00028 (8%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:33:06) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000304) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00280 (357 reqs/sec) | DB: 0.00055 (19%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Update (0.000143) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000275) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000192) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:33:06) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00589 (169 reqs/sec) | Rendering: 0.00405 (68%) | DB: 0.00280 (47%) | 200 OK [http://test.host/users?user=] + SQL (0.000287) SELECT count(*) AS count_all FROM users  + SQL (0.000196) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:33:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000109)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00159 (628 reqs/sec) | DB: 0.00089 (56%) | 302 Found [http://test.host/users/1] + SQL (0.000194) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:33:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00414 (241 reqs/sec) | Rendering: 0.00343 (82%) | DB: 0.00048 (11%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:33:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000272) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00363 (275 reqs/sec) | Rendering: 0.00278 (76%) | DB: 0.00027 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:33:06) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00152 (657 reqs/sec) | Rendering: 0.00139 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:33:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00295 (339 reqs/sec) | Rendering: 0.00193 (65%) | DB: 0.00031 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:33:06) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00242 (412 reqs/sec) | DB: 0.00039 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000619) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000256) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000307) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000099) UPDATE schema_info SET version = 1 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000245) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 2 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000256) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000123) UPDATE schema_info SET version = 3 + SQL (0.000199) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000285) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000136) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000329) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000280) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000312) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000109) UPDATE schema_info SET version = 2 + SQL (0.000193) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000239) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 3 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000247) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000107) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000210) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:33:11) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000201) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00757 (132 reqs/sec) | Rendering: 0.00470 (62%) | DB: 0.00309 (40%) | 200 OK [http://test.host/posts?post=] + SQL (0.000303) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:33:11) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000302) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000170)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00194 (516 reqs/sec) | DB: 0.00097 (50%) | 302 Found [http://test.host/posts/1] + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:33:11) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000359) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00453 (220 reqs/sec) | Rendering: 0.00368 (81%) | DB: 0.00058 (12%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:33:11) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000269) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00370 (269 reqs/sec) | Rendering: 0.00286 (77%) | DB: 0.00027 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:33:11) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00168 (593 reqs/sec) | Rendering: 0.00155 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:33:11) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000319) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00302 (331 reqs/sec) | Rendering: 0.00204 (67%) | DB: 0.00032 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:33:11) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000306) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00290 (344 reqs/sec) | DB: 0.00055 (19%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000141) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Update (0.000107) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Update (0.000125) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000195) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:33:11) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00584 (171 reqs/sec) | Rendering: 0.00399 (68%) | DB: 0.00274 (46%) | 200 OK [http://test.host/users?user=] + SQL (0.000269) SELECT count(*) AS count_all FROM users  + SQL (0.000194) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:33:11) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000106)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00159 (630 reqs/sec) | DB: 0.00087 (54%) | 302 Found [http://test.host/users/1] + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:33:11) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00401 (249 reqs/sec) | Rendering: 0.00330 (82%) | DB: 0.00049 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:33:11) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000272) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00368 (271 reqs/sec) | Rendering: 0.00282 (76%) | DB: 0.00027 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:33:11) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00152 (656 reqs/sec) | Rendering: 0.00139 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:33:11) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000314) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00286 (349 reqs/sec) | Rendering: 0.00181 (63%) | DB: 0.00031 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:33:11) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00243 (412 reqs/sec) | DB: 0.00039 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000593) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000289) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000229) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000331) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000253) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000214) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:33:17) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000153) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00734 (136 reqs/sec) | Rendering: 0.00446 (60%) | DB: 0.00277 (37%) | 200 OK [http://test.host/posts?post=] + SQL (0.000253) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:33:17) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000362) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000122)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00196 (511 reqs/sec) | DB: 0.00093 (47%) | 302 Found [http://test.host/posts/1] + SQL (0.000264) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:33:17) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000351) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00438 (228 reqs/sec) | Rendering: 0.00350 (79%) | DB: 0.00062 (14%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:33:17) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000306) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00398 (251 reqs/sec) | Rendering: 0.00304 (76%) | DB: 0.00031 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:33:17) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00173 (579 reqs/sec) | Rendering: 0.00159 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:33:17) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000274) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00286 (349 reqs/sec) | Rendering: 0.00197 (68%) | DB: 0.00027 (9%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:33:17) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000331) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00290 (344 reqs/sec) | DB: 0.00057 (19%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000285) SELECT * FROM users LIMIT 1 + User Update (0.000126) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Update (0.000130) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:33:17) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00610 (163 reqs/sec) | Rendering: 0.00425 (69%) | DB: 0.00286 (46%) | 200 OK [http://test.host/users?user=] + SQL (0.000260) SELECT count(*) AS count_all FROM users  + SQL (0.000187) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:33:17) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000338) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000120)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00185 (540 reqs/sec) | DB: 0.00091 (48%) | 302 Found [http://test.host/users/1] + SQL (0.000207) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:33:17) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00383 (261 reqs/sec) | Rendering: 0.00314 (82%) | DB: 0.00049 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:33:17) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00384 (260 reqs/sec) | Rendering: 0.00285 (74%) | DB: 0.00033 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:33:17) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00154 (647 reqs/sec) | Rendering: 0.00140 (90%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:33:17) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00279 (358 reqs/sec) | Rendering: 0.00181 (64%) | DB: 0.00031 (11%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:33:17) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000122) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00265 (377 reqs/sec) | DB: 0.00045 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000616) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000256) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000287) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000239) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000240) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called load_missing_constant(Object, :User) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000088) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000210) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:34:13) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000176) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00754 (132 reqs/sec) | Rendering: 0.00453 (60%) | DB: 0.00276 (36%) | 200 OK [http://test.host/posts?post=] + SQL (0.000246) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000195) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:34:13) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000357) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000112)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00209 (478 reqs/sec) | DB: 0.00091 (43%) | 302 Found [http://test.host/posts/1] + SQL (0.000212) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:34:13) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000313) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00440 (227 reqs/sec) | Rendering: 0.00365 (83%) | DB: 0.00053 (11%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:34:13) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000304) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00404 (247 reqs/sec) | Rendering: 0.00303 (75%) | DB: 0.00030 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:34:13) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00167 (598 reqs/sec) | Rendering: 0.00154 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:34:13) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000288) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00292 (342 reqs/sec) | Rendering: 0.00199 (68%) | DB: 0.00029 (9%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:34:13) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000286) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00275 (363 reqs/sec) | DB: 0.00053 (19%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000158) SELECT * FROM users LIMIT 1 + User Load (0.000115) SELECT * FROM users LIMIT 1 + User Load (0.000109) SELECT * FROM users LIMIT 1 + User Load (0.000095) SELECT * FROM users LIMIT 1 + User Load (0.000103) SELECT * FROM users LIMIT 1 + User Load (0.000104) SELECT * FROM users LIMIT 1 + User Load (0.000097) SELECT * FROM users LIMIT 1 + User Load (0.000123) SELECT * FROM users LIMIT 1 + User Load (0.000101) SELECT * FROM users LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:34:13) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00627 (159 reqs/sec) | Rendering: 0.00406 (64%) | DB: 0.00118 (18%) | 200 OK [http://test.host/users?user=] + SQL (0.000253) SELECT count(*) AS count_all FROM users  + SQL (0.000190) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:34:13) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000107)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00166 (604 reqs/sec) | DB: 0.00083 (49%) | 302 Found [http://test.host/users/1] + SQL (0.000240) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:34:13) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00403 (247 reqs/sec) | Rendering: 0.00331 (82%) | DB: 0.00054 (13%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:34:13) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00365 (273 reqs/sec) | Rendering: 0.00277 (75%) | DB: 0.00029 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:34:13) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00152 (658 reqs/sec) | Rendering: 0.00139 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:34:13) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000358) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00295 (339 reqs/sec) | Rendering: 0.00189 (64%) | DB: 0.00036 (12%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:34:13) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000142) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00277 (360 reqs/sec) | DB: 0.00049 (17%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000594) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000242) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000278) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000327) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000237) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000252) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000220) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + SQL (0.000219) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:34:21) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000196) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00764 (130 reqs/sec) | Rendering: 0.00463 (60%) | DB: 0.00282 (36%) | 200 OK [http://test.host/posts?post=] + SQL (0.000253) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000220) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:34:21) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000336) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000126)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00199 (503 reqs/sec) | DB: 0.00094 (47%) | 302 Found [http://test.host/posts/1] + SQL (0.000221) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:34:21) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000315) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00429 (233 reqs/sec) | Rendering: 0.00353 (82%) | DB: 0.00054 (12%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:34:21) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000334) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00459 (218 reqs/sec) | Rendering: 0.00352 (76%) | DB: 0.00033 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:34:21) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00170 (589 reqs/sec) | Rendering: 0.00157 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:34:21) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000308) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00288 (347 reqs/sec) | Rendering: 0.00192 (66%) | DB: 0.00031 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:34:21) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000317) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00290 (345 reqs/sec) | DB: 0.00056 (19%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000272) SELECT * FROM users LIMIT 1 + User Update (0.000156) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Update (0.000569) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000236) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:34:21) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00606 (164 reqs/sec) | Rendering: 0.00418 (68%) | DB: 0.00328 (54%) | 200 OK [http://test.host/users?user=] + SQL (0.000255) SELECT count(*) AS count_all FROM users  + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:34:21) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000109)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00170 (586 reqs/sec) | DB: 0.00089 (51%) | 302 Found [http://test.host/users/1] + SQL (0.000193) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:34:21) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00452 (221 reqs/sec) | Rendering: 0.00372 (82%) | DB: 0.00052 (11%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:34:21) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000297) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00379 (263 reqs/sec) | Rendering: 0.00284 (74%) | DB: 0.00030 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:34:21) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00308 (324 reqs/sec) | Rendering: 0.00291 (94%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:34:21) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00289 (345 reqs/sec) | Rendering: 0.00191 (65%) | DB: 0.00031 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:34:21) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000368) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000311) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00387 (258 reqs/sec) | DB: 0.00068 (17%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000606) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000278) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000244) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000220) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + Post Load (0.000214) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000140) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000237) SELECT * FROM posts LIMIT 1 + Post Load (0.000247) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + SQL (0.000212) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:34:46) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000155) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering layoutfalseactionnew within layouts/posts +Rendering posts/new +Completed in 0.00731 (136 reqs/sec) | Rendering: 0.00470 (64%) | DB: 0.00396 (54%) | 200 OK [http://test.host/posts?post=] + SQL (0.000248) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:34:46) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000280) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000090)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00156 (642 reqs/sec) | DB: 0.00082 (52%) | 302 Found [http://test.host/posts/1] + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:34:46) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000286) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00410 (244 reqs/sec) | Rendering: 0.00341 (83%) | DB: 0.00048 (11%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:34:47) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000291) SELECT * FROM posts  +Rendering layoutfalseactionindexcontent_typetext/html within layouts/posts +Rendering posts/index +Completed in 0.00383 (261 reqs/sec) | Rendering: 0.00292 (76%) | DB: 0.00029 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:34:47) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00186 (536 reqs/sec) | Rendering: 0.00168 (90%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:34:47) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000310) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering layoutfalseactionshowcontent_typetext/html within layouts/posts +Rendering posts/show +Completed in 0.00305 (328 reqs/sec) | Rendering: 0.00200 (65%) | DB: 0.00031 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:34:47) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000278) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000116) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00269 (372 reqs/sec) | DB: 0.00052 (19%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000279) SELECT * FROM users LIMIT 1 + User Update (0.000140) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000190) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:34:47) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering layoutfalseactionnew within layouts/users +Rendering users/new +Completed in 0.00640 (156 reqs/sec) | Rendering: 0.00440 (68%) | DB: 0.00280 (43%) | 200 OK [http://test.host/users?user=] + SQL (0.000258) SELECT count(*) AS count_all FROM users  + SQL (0.000189) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:34:47) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000104)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00153 (651 reqs/sec) | DB: 0.00083 (53%) | 302 Found [http://test.host/users/1] + SQL (0.000191) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:34:47) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00381 (262 reqs/sec) | Rendering: 0.00313 (82%) | DB: 0.00048 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:34:47) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000262) SELECT * FROM users  +Rendering layoutfalseactionindexcontent_typetext/html within layouts/users +Rendering users/index +Completed in 0.00363 (275 reqs/sec) | Rendering: 0.00280 (77%) | DB: 0.00026 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:34:47) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00154 (647 reqs/sec) | Rendering: 0.00141 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:34:47) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000397) SELECT * FROM users WHERE (users."id" = 1)  +Rendering layoutfalseactionshowcontent_typetext/html within layouts/users +Rendering users/show +Completed in 0.00288 (347 reqs/sec) | Rendering: 0.00181 (62%) | DB: 0.00040 (13%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:34:47) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000125) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00272 (368 reqs/sec) | DB: 0.00046 (17%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000604) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000257) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000282) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000238) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000223) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000255) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000208) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000217) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000169) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000313) SELECT * FROM posts LIMIT 1 + Post Load (0.000306) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + SQL (0.000211) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:35:58) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000165) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering layoutfalseactionnew within layouts/posts +Rendering posts/new +Completed in 0.00694 (144 reqs/sec) | Rendering: 0.00447 (64%) | DB: 0.00407 (58%) | 200 OK [http://test.host/posts?post=] + SQL (0.000239) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000196) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:35:58) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000283) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00154 (650 reqs/sec) | DB: 0.00081 (52%) | 302 Found [http://test.host/posts/1] + SQL (0.000188) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:35:58) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000336) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00432 (231 reqs/sec) | Rendering: 0.00350 (81%) | DB: 0.00052 (12%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:35:58) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000260) SELECT * FROM posts  +Rendering layoutfalseactionindexcontent_typetext/html within layouts/posts +Rendering posts/index +Completed in 0.00378 (264 reqs/sec) | Rendering: 0.00295 (77%) | DB: 0.00026 (6%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:35:58) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00165 (606 reqs/sec) | Rendering: 0.00152 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:35:58) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000276) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering layoutfalseactionshowcontent_typetext/html within layouts/posts +Rendering posts/show +Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00194 (68%) | DB: 0.00028 (9%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:35:58) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000282) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000109) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00270 (370 reqs/sec) | DB: 0.00051 (18%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:35:58) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering layoutfalseactionnew within layouts/users +Rendering users/new +Completed in 0.00604 (165 reqs/sec) | Rendering: 0.00419 (69%) | DB: 0.00276 (45%) | 200 OK [http://test.host/users?user=] + SQL (0.000257) SELECT count(*) AS count_all FROM users  + SQL (0.000183) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:35:58) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000087)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00152 (656 reqs/sec) | DB: 0.00081 (53%) | 302 Found [http://test.host/users/1] + SQL (0.000189) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:35:58) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00376 (266 reqs/sec) | Rendering: 0.00306 (81%) | DB: 0.00048 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:35:58) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000315) SELECT * FROM users  +Rendering layoutfalseactionindexcontent_typetext/html within layouts/users +Rendering users/index +Completed in 0.00373 (268 reqs/sec) | Rendering: 0.00278 (74%) | DB: 0.00032 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:35:58) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00177 (564 reqs/sec) | Rendering: 0.00161 (90%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:35:58) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  +Rendering layoutfalseactionshowcontent_typetext/html within layouts/users +Rendering users/show +Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00188 (66%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:35:58) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00251 (398 reqs/sec) | DB: 0.00041 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000593) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000296) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000285) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000240) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000103) UPDATE schema_info SET version = 3 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000242) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000237) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000227) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + Post Load (0.000205) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000138) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + Post Load (0.000302) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + SQL (0.000223) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:36:33) [POST] + Session ID: + Parameters: {"post"=>{}, "action"=>"create", "controller"=>"posts"} + Post Load (0.000136) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering layoutfalseactionnew within layouts/posts +Rendering posts/new +Completed in 0.00672 (148 reqs/sec) | Rendering: 0.00439 (65%) | DB: 0.00404 (60%) | 200 OK [http://test.host/posts?post=] + SQL (0.000256) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000204) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:36:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000276) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00151 (663 reqs/sec) | DB: 0.00082 (54%) | 302 Found [http://test.host/posts/1] + SQL (0.000206) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:36:33) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000279) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00411 (243 reqs/sec) | Rendering: 0.00343 (83%) | DB: 0.00048 (11%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:36:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000269) SELECT * FROM posts  +Rendering layoutfalseactionindexcontent_typetext/html within layouts/posts +Rendering posts/index +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00286 (76%) | DB: 0.00027 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:36:33) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00165 (607 reqs/sec) | Rendering: 0.00152 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:36:33) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000275) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering layoutfalseactionshowcontent_typetext/html within layouts/posts +Rendering posts/show +Completed in 0.00280 (357 reqs/sec) | Rendering: 0.00191 (68%) | DB: 0.00027 (9%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:36:33) [PUT] + Session ID: + Parameters: {"post"=>{}, "action"=>"update", "id"=>"1", "controller"=>"posts"} + Post Load (0.000279) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00278 (359 reqs/sec) | DB: 0.00052 (18%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000229) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000286) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000201) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:36:33) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering layoutfalseactionnew within layouts/users +Rendering users/new +Completed in 0.00595 (168 reqs/sec) | Rendering: 0.00410 (68%) | DB: 0.00278 (46%) | 200 OK [http://test.host/users?user=] + SQL (0.000264) SELECT count(*) AS count_all FROM users  + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:36:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000100)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00158 (632 reqs/sec) | DB: 0.00085 (53%) | 302 Found [http://test.host/users/1] + SQL (0.000193) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:36:33) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00306 (81%) | DB: 0.00048 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:36:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000269) SELECT * FROM users  +Rendering layoutfalseactionindexcontent_typetext/html within layouts/users +Rendering users/index +Completed in 0.00360 (277 reqs/sec) | Rendering: 0.00275 (76%) | DB: 0.00027 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:36:33) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00150 (665 reqs/sec) | Rendering: 0.00137 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:36:33) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering layoutfalseactionshowcontent_typetext/html within layouts/users +Rendering users/show +Completed in 0.00286 (349 reqs/sec) | Rendering: 0.00194 (67%) | DB: 0.00029 (9%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:36:33) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000145) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00265 (377 reqs/sec) | DB: 0.00045 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000599) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000265) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000278) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 1 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000235) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000225) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000235) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000218) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + Post Load (0.000195) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000248) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + SQL (0.000230) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:38:05) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000169) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00711 (140 reqs/sec) | Rendering: 0.00448 (62%) | DB: 0.00397 (55%) | 200 OK [http://test.host/posts?post=] + SQL (0.000248) SELECT count(*) AS count_all FROM posts  + SQL (0.000182) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:38:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000275) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00151 (660 reqs/sec) | DB: 0.00079 (52%) | 302 Found [http://test.host/posts/1] + SQL (0.000184) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:38:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000287) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00414 (241 reqs/sec) | Rendering: 0.00343 (83%) | DB: 0.00047 (11%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:38:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000257) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00367 (272 reqs/sec) | Rendering: 0.00285 (77%) | DB: 0.00026 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:38:05) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00182 (549 reqs/sec) | Rendering: 0.00168 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:38:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000316) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00313 (319 reqs/sec) | Rendering: 0.00211 (67%) | DB: 0.00032 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:38:05) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000282) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000110) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00293 (341 reqs/sec) | DB: 0.00054 (18%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000201) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:38:05) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00614 (162 reqs/sec) | Rendering: 0.00409 (66%) | DB: 0.00273 (44%) | 200 OK [http://test.host/users?user=] + SQL (0.000248) SELECT count(*) AS count_all FROM users  + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:38:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00153 (652 reqs/sec) | DB: 0.00082 (53%) | 302 Found [http://test.host/users/1] + SQL (0.000187) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:38:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00378 (264 reqs/sec) | Rendering: 0.00311 (82%) | DB: 0.00046 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:38:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000346) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00389 (256 reqs/sec) | Rendering: 0.00288 (73%) | DB: 0.00035 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:38:05) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00168 (593 reqs/sec) | Rendering: 0.00152 (90%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:38:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00276 (361 reqs/sec) | Rendering: 0.00181 (65%) | DB: 0.00030 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:38:05) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00243 (410 reqs/sec) | DB: 0.00040 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000276) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000297) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000240) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000223) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000238) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000264) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + Post Load (0.000175) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + Post Load (0.000273) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + SQL (0.000209) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:38:31) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000143) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00670 (149 reqs/sec) | Rendering: 0.00431 (64%) | DB: 0.00396 (59%) | 200 OK [http://test.host/posts?post=] + SQL (0.000236) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000193) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:38:31) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000307) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00158 (631 reqs/sec) | DB: 0.00082 (52%) | 302 Found [http://test.host/posts/1] + SQL (0.000188) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:38:31) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000322) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00460 (217 reqs/sec) | Rendering: 0.00382 (83%) | DB: 0.00051 (11%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:38:31) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000269) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00367 (272 reqs/sec) | Rendering: 0.00283 (77%) | DB: 0.00027 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:38:31) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00168 (595 reqs/sec) | Rendering: 0.00155 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:38:31) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000324) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00299 (333 reqs/sec) | Rendering: 0.00197 (65%) | DB: 0.00032 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:38:31) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000312) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00302 (330 reqs/sec) | DB: 0.00057 (18%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000155) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000125) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:38:31) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00612 (163 reqs/sec) | Rendering: 0.00408 (66%) | DB: 0.00280 (45%) | 200 OK [http://test.host/users?user=] + SQL (0.000250) SELECT count(*) AS count_all FROM users  + SQL (0.000185) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:38:31) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000408) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000117)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00189 (529 reqs/sec) | DB: 0.00096 (50%) | 302 Found [http://test.host/users/1] + SQL (0.000246) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:38:31) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00412 (242 reqs/sec) | Rendering: 0.00338 (82%) | DB: 0.00056 (13%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:38:31) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000283) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00377 (265 reqs/sec) | Rendering: 0.00289 (76%) | DB: 0.00028 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:38:31) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00153 (655 reqs/sec) | Rendering: 0.00140 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:38:31) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00185 (66%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:38:31) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000355) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000134) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00287 (348 reqs/sec) | DB: 0.00049 (17%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000258) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000279) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000100) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000242) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000224) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000339) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000282) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + Post Load (0.000180) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + Post Load (0.000306) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + SQL (0.000215) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:39:44) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000137) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00697 (143 reqs/sec) | Rendering: 0.00462 (66%) | DB: 0.00408 (58%) | 200 OK [http://test.host/posts?post=] + SQL (0.000249) SELECT count(*) AS count_all FROM posts  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000211) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:39:44) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000303) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00160 (625 reqs/sec) | DB: 0.00085 (53%) | 302 Found [http://test.host/posts/1] + SQL (0.000187) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:39:44) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000281) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00435 (229 reqs/sec) | Rendering: 0.00367 (84%) | DB: 0.00047 (10%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:39:44) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000299) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00379 (263 reqs/sec) | Rendering: 0.00288 (75%) | DB: 0.00030 (7%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:39:44) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00183 (547 reqs/sec) | Rendering: 0.00168 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:39:44) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000283) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00288 (347 reqs/sec) | Rendering: 0.00197 (68%) | DB: 0.00028 (9%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:39:44) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000278) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Update (0.000124) UPDATE posts SET "title" = 'My Cute Kitten!', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00307 (325 reqs/sec) | DB: 0.00054 (17%) | 302 Found [http://test.host/posts/1?post=] + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000164) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000134) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000339) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000187) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:39:44) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00620 (161 reqs/sec) | Rendering: 0.00434 (69%) | DB: 0.00286 (46%) | 200 OK [http://test.host/users?user=] + SQL (0.000253) SELECT count(*) AS count_all FROM users  + SQL (0.000211) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:39:44) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000108)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00166 (601 reqs/sec) | DB: 0.00089 (53%) | 302 Found [http://test.host/users/1] + SQL (0.000233) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:39:44) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000332) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00778 (128 reqs/sec) | Rendering: 0.00688 (88%) | DB: 0.00056 (7%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:39:44) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000361) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00406 (246 reqs/sec) | Rendering: 0.00294 (72%) | DB: 0.00036 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:39:44) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00333 (300 reqs/sec) | Rendering: 0.00319 (95%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:39:44) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000398) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00287 (348 reqs/sec) | Rendering: 0.00182 (63%) | DB: 0.00040 (13%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:39:44) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000122) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00259 (385 reqs/sec) | DB: 0.00042 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000259) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000281) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000242) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 3 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000225) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000329) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + Post Load (0.000188) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000114) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + Post Load (0.000255) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + SQL (0.000306) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:40:33) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000160) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00717 (139 reqs/sec) | Rendering: 0.00447 (62%) | DB: 0.00404 (56%) | 200 OK [http://test.host/posts?post=] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:40:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000270) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00452 (221 reqs/sec) | Rendering: 0.00365 (80%) | DB: 0.00027 (5%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:40:33) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00170 (587 reqs/sec) | Rendering: 0.00156 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Update (0.000128) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000282) SELECT * FROM users LIMIT 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Update (0.000152) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000190) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:40:33) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00590 (169 reqs/sec) | Rendering: 0.00403 (68%) | DB: 0.00282 (47%) | 200 OK [http://test.host/users?user=] + SQL (0.000260) SELECT count(*) AS count_all FROM users  + SQL (0.000213) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:40:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000111)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00176 (569 reqs/sec) | DB: 0.00091 (52%) | 302 Found [http://test.host/users/1] + SQL (0.000215) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:40:33) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00388 (257 reqs/sec) | Rendering: 0.00320 (82%) | DB: 0.00049 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:40:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000317) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00414 (241 reqs/sec) | Rendering: 0.00310 (74%) | DB: 0.00032 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:40:33) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00159 (629 reqs/sec) | Rendering: 0.00145 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:40:33) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00265 (376 reqs/sec) | Rendering: 0.00178 (67%) | DB: 0.00027 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:40:33) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000160) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00283 (353 reqs/sec) | DB: 0.00045 (15%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000605) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000259) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000277) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000238) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000232) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000327) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000271) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000295) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000239) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000177) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000180) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000221) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000200) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000136) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000289) SELECT * FROM posts LIMIT 1 + Post Load (0.000295) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + SQL (0.000386) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:43:13) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000143) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00679 (147 reqs/sec) | Rendering: 0.00433 (63%) | DB: 0.00435 (64%) | 200 OK [http://test.host/posts?post=bodyblah+blah+blahtitlefirst+post&user_id=1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:43:13) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000287) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00430 (232 reqs/sec) | Rendering: 0.00339 (78%) | DB: 0.00029 (6%) | 200 OK [http://test.host/posts?user_id=1] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:43:13) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00203 (492 reqs/sec) | Rendering: 0.00185 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new?user_id=1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Update (0.000181) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000287) SELECT * FROM users LIMIT 1 + User Update (0.000133) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000283) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:43:13) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00598 (167 reqs/sec) | Rendering: 0.00414 (69%) | DB: 0.00289 (48%) | 200 OK [http://test.host/users?user=] + SQL (0.000259) SELECT count(*) AS count_all FROM users  + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:43:13) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000094)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00171 (585 reqs/sec) | DB: 0.00083 (48%) | 302 Found [http://test.host/users/1] + SQL (0.000257) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:43:13) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00429 (233 reqs/sec) | Rendering: 0.00349 (81%) | DB: 0.00059 (13%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:43:13) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00363 (275 reqs/sec) | Rendering: 0.00277 (76%) | DB: 0.00027 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:43:13) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00156 (641 reqs/sec) | Rendering: 0.00141 (90%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:43:13) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00264 (378 reqs/sec) | Rendering: 0.00176 (66%) | DB: 0.00028 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:43:13) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00256 (390 reqs/sec) | DB: 0.00044 (17%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000608) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000260) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000277) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000241) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000226) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000386) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + Post Load (0.000182) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000289) SELECT * FROM posts LIMIT 1 + Post Load (0.000315) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000238) SELECT * FROM posts LIMIT 1 + SQL (0.000202) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:43:29) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000139) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00705 (141 reqs/sec) | Rendering: 0.00459 (65%) | DB: 0.00428 (60%) | 200 OK [http://test.host/posts?post=bodyblah+blah+blahtitlefirst+post&user_id=1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + SQL (0.000209) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:43:29) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000317) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000089)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00163 (612 reqs/sec) | DB: 0.00087 (52%) | 302 Found [http://test.host/posts/1?user_id=1] + User Load (0.000115) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:43:29) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000294) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00438 (228 reqs/sec) | Rendering: 0.00367 (83%) | DB: 0.00065 (14%) | 200 OK [http://test.host/posts/1;edit?user_id=1] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:43:29) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000260) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00368 (271 reqs/sec) | Rendering: 0.00287 (77%) | DB: 0.00053 (14%) | 200 OK [http://test.host/posts?user_id=1] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:43:29) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000349) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00312 (320 reqs/sec) | Rendering: 0.00207 (66%) | DB: 0.00060 (19%) | 200 OK [http://test.host/posts/1?user_id=1] + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:43:29) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00241 (415 reqs/sec) | Rendering: 0.00226 (94%) | DB: 0.00025 (10%) | 200 OK [http://test.host/posts/new?user_id=1] + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:43:29) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000297) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/posts/1 +Completed in 0.00297 (336 reqs/sec) | DB: 0.00080 (26%) | 302 Found [http://test.host/posts/1?post=bodyblah+blah+blahtitlefirst+post&user_id=1] + User Load (0.000146) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000292) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Update (0.000156) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000193) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:43:29) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00630 (158 reqs/sec) | Rendering: 0.00427 (67%) | DB: 0.00292 (46%) | 200 OK [http://test.host/users?user=] + SQL (0.000259) SELECT count(*) AS count_all FROM users  + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:43:29) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000086)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00153 (651 reqs/sec) | DB: 0.00083 (53%) | 302 Found [http://test.host/users/1] + SQL (0.000187) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:43:30) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00377 (265 reqs/sec) | Rendering: 0.00308 (81%) | DB: 0.00048 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:43:30) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00362 (275 reqs/sec) | Rendering: 0.00276 (76%) | DB: 0.00027 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:43:30) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00181 (552 reqs/sec) | Rendering: 0.00167 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:43:30) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000396) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00304 (329 reqs/sec) | Rendering: 0.00186 (61%) | DB: 0.00040 (13%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:43:30) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000115) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00241 (414 reqs/sec) | DB: 0.00040 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000621) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000281) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000280) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000225) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000098) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + Post Load (0.000188) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + Post Load (0.000310) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + SQL (0.000202) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:44:22) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00734 (136 reqs/sec) | Rendering: 0.00482 (65%) | DB: 0.00426 (57%) | 200 OK [http://test.host/users/1/posts?post=bodyblah+blah+blahtitlefirst+post] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + SQL (0.000262) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:44:22) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000340) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000090)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00174 (573 reqs/sec) | DB: 0.00096 (55%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000116) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:44:22) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000276) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00416 (240 reqs/sec) | Rendering: 0.00350 (84%) | DB: 0.00065 (15%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:44:22) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000343) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:44:22) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000345) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00303 (329 reqs/sec) | Rendering: 0.00200 (66%) | DB: 0.00060 (19%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000283) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:44:22) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00179 (559 reqs/sec) | Rendering: 0.00163 (91%) | DB: 0.00028 (15%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:44:22) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000299) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000145) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000117) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00301 (331 reqs/sec) | DB: 0.00081 (27%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000161) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000319) SELECT * FROM users LIMIT 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000142) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000191) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:44:22) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00636 (157 reqs/sec) | Rendering: 0.00430 (67%) | DB: 0.00308 (48%) | 200 OK [http://test.host/users?user=] + SQL (0.000272) SELECT count(*) AS count_all FROM users  + SQL (0.000209) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:44:22) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000332) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000099)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00174 (573 reqs/sec) | DB: 0.00091 (52%) | 302 Found [http://test.host/users/1] + SQL (0.000201) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:44:22) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00430 (232 reqs/sec) | Rendering: 0.00360 (83%) | DB: 0.00049 (11%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:44:22) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00399 (250 reqs/sec) | Rendering: 0.00301 (75%) | DB: 0.00030 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:44:22) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00178 (563 reqs/sec) | Rendering: 0.00164 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:44:22) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00285 (350 reqs/sec) | Rendering: 0.00189 (66%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:44:22) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000142) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00289 (346 reqs/sec) | DB: 0.00044 (15%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000603) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000276) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000237) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000223) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000354) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 1 + SQL (0.000191) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000234) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000179) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000179) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000292) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000198) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:45:18) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00716 (139 reqs/sec) | Rendering: 0.00467 (65%) | DB: 0.00447 (62%) | 200 OK [http://test.host/users/1/posts?post=bodyblah+blah+blahtitlefirst+post] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:45:18) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000301) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000090)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00171 (585 reqs/sec) | DB: 0.00086 (50%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000126) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000291) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:45:18) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000286) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00420 (238 reqs/sec) | Rendering: 0.00353 (83%) | DB: 0.00070 (16%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000287) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:45:18) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000282) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:45:18) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000326) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00301 (332 reqs/sec) | Rendering: 0.00201 (66%) | DB: 0.00058 (19%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:45:18) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00186 (537 reqs/sec) | Rendering: 0.00170 (91%) | DB: 0.00027 (14%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:45:18) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000326) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000117) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00308 (324 reqs/sec) | DB: 0.00082 (26%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000148) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000269) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000288) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + User Update (0.000134) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000232) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:45:18) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00620 (161 reqs/sec) | Rendering: 0.00419 (67%) | DB: 0.00306 (49%) | 200 OK [http://test.host/users?user=] + SQL (0.000259) SELECT count(*) AS count_all FROM users  + SQL (0.000194) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:45:18) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000134)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00186 (536 reqs/sec) | DB: 0.00092 (49%) | 302 Found [http://test.host/users/1] + SQL (0.000222) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:45:18) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00404 (247 reqs/sec) | Rendering: 0.00330 (81%) | DB: 0.00053 (13%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:45:18) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00382 (262 reqs/sec) | Rendering: 0.00293 (76%) | DB: 0.00027 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:45:18) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00159 (630 reqs/sec) | Rendering: 0.00146 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:45:18) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00188 (66%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:45:18) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00249 (401 reqs/sec) | DB: 0.00041 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000606) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000277) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000231) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000262) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000233) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + Post Load (0.000214) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000137) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000238) SELECT * FROM posts LIMIT 1 + Post Load (0.000248) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000237) SELECT * FROM posts LIMIT 1 + SQL (0.000200) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:45:35) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00722 (138 reqs/sec) | Rendering: 0.00458 (63%) | DB: 0.00420 (58%) | 200 OK [http://test.host/users/1/posts?post=bodyblah+blah+blahtitlefirst+post] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:45:35) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000285) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000093)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00155 (643 reqs/sec) | DB: 0.00081 (51%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000115) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:45:35) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000279) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00431 (231 reqs/sec) | Rendering: 0.00364 (84%) | DB: 0.00064 (14%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000294) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:45:35) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000318) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:45:35) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000337) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00312 (321 reqs/sec) | Rendering: 0.00207 (66%) | DB: 0.00060 (19%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:45:35) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00194 (514 reqs/sec) | Rendering: 0.00178 (91%) | DB: 0.00025 (13%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:45:35) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000307) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00291 (344 reqs/sec) | DB: 0.00080 (27%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000124) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000131) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000292) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000291) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000275) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000133) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000202) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:45:35) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00619 (161 reqs/sec) | Rendering: 0.00419 (67%) | DB: 0.00306 (49%) | 200 OK [http://test.host/users?user=] + SQL (0.000254) SELECT count(*) AS count_all FROM users  + SQL (0.000210) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:45:35) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000131)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00209 (477 reqs/sec) | DB: 0.00095 (45%) | 302 Found [http://test.host/users/1] + SQL (0.000213) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:45:35) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00399 (250 reqs/sec) | Rendering: 0.00328 (82%) | DB: 0.00050 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:45:35) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000389) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00289 (73%) | DB: 0.00039 (9%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:45:35) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00168 (594 reqs/sec) | Rendering: 0.00154 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:45:35) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00180 (64%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:45:35) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000341) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000123) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00274 (364 reqs/sec) | DB: 0.00046 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000593) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000263) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000288) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000220) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000234) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000237) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000263) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000237) SELECT * FROM posts LIMIT 1 + Post Load (0.000287) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + SQL (0.000194) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:50:07) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000140) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00717 (139 reqs/sec) | Rendering: 0.00475 (66%) | DB: 0.00410 (57%) | 200 OK [http://test.host/users/1/posts?post=bodyblah+blah+blahtitlefirst+post] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:50:07) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000289) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00156 (639 reqs/sec) | DB: 0.00082 (52%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000130) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:50:07) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000321) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00432 (231 reqs/sec) | Rendering: 0.00358 (82%) | DB: 0.00069 (16%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000283) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:50:07) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000278) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:50:07) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000370) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00323 (309 reqs/sec) | Rendering: 0.00203 (62%) | DB: 0.00062 (19%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:50:07) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00190 (527 reqs/sec) | Rendering: 0.00173 (91%) | DB: 0.00025 (13%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000319) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:50:07) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000298) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000156) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00292 (342 reqs/sec) | DB: 0.00089 (30%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000134) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000166) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000134) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000279) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000282) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:50:07) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00646 (154 reqs/sec) | Rendering: 0.00432 (66%) | DB: 0.00309 (47%) | 200 OK [http://test.host/users?user=] + SQL (0.000266) SELECT count(*) AS count_all FROM users  + SQL (0.000193) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:50:07) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000087)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00163 (614 reqs/sec) | DB: 0.00085 (52%) | 302 Found [http://test.host/users/1] + SQL (0.000205) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:50:07) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00399 (250 reqs/sec) | Rendering: 0.00323 (81%) | DB: 0.00049 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:50:07) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000375) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00434 (230 reqs/sec) | Rendering: 0.00306 (70%) | DB: 0.00038 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:50:07) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00165 (604 reqs/sec) | Rendering: 0.00153 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:50:07) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000316) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00307 (325 reqs/sec) | Rendering: 0.00203 (66%) | DB: 0.00032 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:50:07) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000139) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00253 (395 reqs/sec) | DB: 0.00044 (17%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000610) CREATE TABLE schema_info (version integer) + SQL (0.000100) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000282) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000233) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000220) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000229) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000339) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000207) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000282) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000435) SELECT * FROM posts LIMIT 1 + Post Load (0.000169) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000132) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000165) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000240) SELECT * FROM posts LIMIT 1 + Post Load (0.000314) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:50:18) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00699 (142 reqs/sec) | Rendering: 0.00447 (63%) | DB: 0.00458 (65%) | 200 OK [http://test.host/users/1/posts?post=bodyblah+blah+blahtitlefirst+post] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000303) SELECT * FROM posts LIMIT 1 + SQL (0.000227) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:50:18) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000287) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000090)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00157 (635 reqs/sec) | DB: 0.00091 (57%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000116) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:50:18) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000319) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00428 (233 reqs/sec) | Rendering: 0.00354 (82%) | DB: 0.00070 (16%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:50:18) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000335) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:50:18) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000327) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00308 (324 reqs/sec) | Rendering: 0.00204 (66%) | DB: 0.00059 (19%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:50:18) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00184 (544 reqs/sec) | Rendering: 0.00168 (91%) | DB: 0.00025 (13%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:50:18) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000321) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000115) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00305 (328 reqs/sec) | DB: 0.00083 (27%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000136) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000287) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000210) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:50:18) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00625 (160 reqs/sec) | Rendering: 0.00426 (68%) | DB: 0.00298 (47%) | 200 OK [http://test.host/users?user=] + SQL (0.000262) SELECT count(*) AS count_all FROM users  + SQL (0.000216) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:50:18) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000361) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000092)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00183 (545 reqs/sec) | DB: 0.00093 (50%) | 302 Found [http://test.host/users/1] + SQL (0.000201) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:50:18) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000380) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00426 (235 reqs/sec) | Rendering: 0.00338 (79%) | DB: 0.00058 (13%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:50:18) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000320) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00416 (240 reqs/sec) | Rendering: 0.00309 (74%) | DB: 0.00032 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:50:18) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00165 (607 reqs/sec) | Rendering: 0.00151 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:50:18) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00281 (355 reqs/sec) | Rendering: 0.00184 (65%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:50:18) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000130) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00262 (381 reqs/sec) | DB: 0.00043 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000258) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000278) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000236) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000228) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000228) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + Post Load (0.000186) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000239) SELECT * FROM posts LIMIT 1 + Post Load (0.000249) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + SQL (0.000195) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:52:03) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000155) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000329) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:52:03) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000295) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000092)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00172 (581 reqs/sec) | DB: 0.00097 (56%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000141) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:52:03) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000322) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:52:03) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000338) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000196) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:52:03) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000415) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000159) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:52:03) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:52:03) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000348) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000121) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00313 (319 reqs/sec) | DB: 0.00085 (27%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000126) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Update (0.000128) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000283) SELECT * FROM users LIMIT 1 + User Update (0.000131) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000182) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:52:03) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00622 (160 reqs/sec) | Rendering: 0.00414 (66%) | DB: 0.00289 (46%) | 200 OK [http://test.host/users?user=] + SQL (0.000247) SELECT count(*) AS count_all FROM users  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000194) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:52:03) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000376) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000093)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00177 (564 reqs/sec) | DB: 0.00091 (51%) | 302 Found [http://test.host/users/1] + SQL (0.000196) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:52:03) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000383) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00423 (236 reqs/sec) | Rendering: 0.00336 (79%) | DB: 0.00058 (13%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:52:03) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00368 (271 reqs/sec) | Rendering: 0.00277 (75%) | DB: 0.00029 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:52:03) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00163 (615 reqs/sec) | Rendering: 0.00148 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:52:03) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00275 (363 reqs/sec) | Rendering: 0.00179 (65%) | DB: 0.00030 (11%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:52:03) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00234 (427 reqs/sec) | DB: 0.00040 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000654) CREATE TABLE schema_info (version integer) + SQL (0.000102) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000234) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000279) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000243) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000214) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000215) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000237) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000154) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000113) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000235) SELECT * FROM posts LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:54:23) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000150) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000183) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:54:23) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000280) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000091)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00157 (637 reqs/sec) | DB: 0.00081 (51%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000116) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000320) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:54:23) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000349) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000147) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:54:23) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000373) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000229) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:54:24) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000497) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000196) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:54:24) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:54:24) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000326) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000132) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00312 (320 reqs/sec) | DB: 0.00083 (26%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000154) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Update (0.000105) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + User Load (0.000225) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000309) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:54:24) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00590 (169 reqs/sec) | Rendering: 0.00403 (68%) | DB: 0.00285 (48%) | 200 OK [http://test.host/users?user=] + SQL (0.000281) SELECT count(*) AS count_all FROM users  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000200) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:54:24) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000088)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00148 (674 reqs/sec) | DB: 0.00084 (56%) | 302 Found [http://test.host/users/1] + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:54:24) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00384 (260 reqs/sec) | Rendering: 0.00315 (82%) | DB: 0.00046 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:54:24) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000257) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00352 (284 reqs/sec) | Rendering: 0.00270 (76%) | DB: 0.00026 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:54:24) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00151 (660 reqs/sec) | Rendering: 0.00139 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:54:24) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00264 (378 reqs/sec) | Rendering: 0.00175 (66%) | DB: 0.00027 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:54:24) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000340) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000138) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00282 (355 reqs/sec) | DB: 0.00048 (16%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000617) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000280) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000243) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000216) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000249) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000279) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 12:57:28) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000159) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 12:57:28) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000269) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000089)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00153 (651 reqs/sec) | DB: 0.00080 (52%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000117) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 12:57:28) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000272) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000150) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 12:57:28) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000365) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000233) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 12:57:28) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000415) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000201) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 12:57:28) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 12:57:28) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000281) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000110) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00286 (349 reqs/sec) | DB: 0.00078 (27%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000117) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Update (0.000130) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.001991) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + SQL (0.000185) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 12:57:28) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00600 (166 reqs/sec) | Rendering: 0.00414 (68%) | DB: 0.00478 (79%) | 200 OK [http://test.host/users?user=] + SQL (0.000243) SELECT count(*) AS count_all FROM users  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + SQL (0.000192) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 12:57:28) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000672) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000098)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00370 (270 reqs/sec) | DB: 0.00120 (32%) | 302 Found [http://test.host/users/1] + SQL (0.000268) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 12:57:28) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00384 (260 reqs/sec) | Rendering: 0.00316 (82%) | DB: 0.00055 (14%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 12:57:28) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00380 (263 reqs/sec) | Rendering: 0.00294 (77%) | DB: 0.00027 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 12:57:28) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00163 (612 reqs/sec) | Rendering: 0.00146 (89%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 12:57:28) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00183 (65%) | DB: 0.00028 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 12:57:28) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000190) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00269 (371 reqs/sec) | DB: 0.00047 (17%) | 302 Found [http://test.host/users/1?user=] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000612) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000279) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000099) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000234) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000225) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000336) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000228) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000255) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000240) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + Post Load (0.000151) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000114) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000233) SELECT * FROM posts LIMIT 1 + Post Load (0.000247) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000240) SELECT * FROM posts LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:01:34) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000139) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + SQL (0.000185) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:01:34) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000293) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000095)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00173 (577 reqs/sec) | DB: 0.00083 (48%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000136) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:01:34) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000346) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000143) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:01:34) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000337) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000212) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:01:34) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000412) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000159) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:01:34) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:01:34) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000344) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00315 (317 reqs/sec) | DB: 0.00084 (26%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000127) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000139) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Load (0.000229) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:01:34) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00596 (167 reqs/sec) | Rendering: 0.00400 (67%) | DB: 0.00306 (51%) | 200 OK [http://test.host/users?user=namebobemailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + User Load (0.000247) SELECT * FROM users LIMIT 1 + SQL (0.000183) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:01:34) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000096)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00170 (588 reqs/sec) | DB: 0.00086 (50%) | 302 Found [http://test.host/users/1] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:01:34) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000433) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00424 (235 reqs/sec) | Rendering: 0.00329 (77%) | DB: 0.00069 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:01:34) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00380 (263 reqs/sec) | Rendering: 0.00292 (76%) | DB: 0.00054 (14%) | 200 OK [http://test.host/users] + User Load (0.000404) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:01:34) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000327) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00180 (64%) | DB: 0.00073 (26%) | 200 OK [http://test.host/users/1] + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:01:34) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00154 (648 reqs/sec) | Rendering: 0.00142 (91%) | DB: 0.00025 (16%) | 200 OK [http://test.host/users/new] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:01:34) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000128) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00243 (411 reqs/sec) | DB: 0.00066 (27%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000633) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000280) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000243) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000228) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000255) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000215) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + Post Load (0.000180) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000136) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000240) SELECT * FROM posts LIMIT 1 + Post Load (0.000246) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + SQL (0.000233) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:01:52) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000156) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:01:52) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000276) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00154 (647 reqs/sec) | DB: 0.00081 (52%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000119) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:01:52) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000303) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000173) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:01:52) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000288) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000193) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:01:52) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000335) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000186) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000311) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:01:52) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:01:52) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000326) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000136) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00344 (290 reqs/sec) | DB: 0.00086 (25%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000130) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Load (0.000229) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:01:52) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000118) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00327 (305 reqs/sec) | DB: 0.00320 (97%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000211) SELECT count(*) AS count_all FROM users  + User Load (0.000255) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:01:52) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000087)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00169 (591 reqs/sec) | DB: 0.00100 (59%) | 302 Found [http://test.host/users/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:01:52) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00463 (215 reqs/sec) | Rendering: 0.00391 (84%) | DB: 0.00056 (12%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000253) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:01:52) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000255) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00355 (282 reqs/sec) | Rendering: 0.00274 (77%) | DB: 0.00051 (14%) | 200 OK [http://test.host/users] + User Load (0.000245) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:01:52) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00278 (360 reqs/sec) | Rendering: 0.00190 (68%) | DB: 0.00051 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:01:52) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00259 (386 reqs/sec) | Rendering: 0.00246 (94%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:01:52) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00246 (406 reqs/sec) | DB: 0.00065 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000607) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000271) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000220) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000255) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000195) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000113) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000168) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000238) SELECT * FROM posts LIMIT 1 + Post Load (0.000287) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000239) SELECT * FROM posts LIMIT 1 + SQL (0.000202) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:35:36) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:35:36) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000284) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00156 (642 reqs/sec) | DB: 0.00080 (51%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000119) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:35:36) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000292) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000145) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:35:36) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000369) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000221) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000327) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:35:36) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000286) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000154) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000113) SELECT * FROM users WHERE (users."id" = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:35:36) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:35:36) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000285) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000109) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00292 (342 reqs/sec) | DB: 0.00077 (26%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000129) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000296) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000288) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000133) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:35:36) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000121) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00359 (278 reqs/sec) | DB: 0.00327 (90%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000271) SELECT count(*) AS count_all FROM users  + User Load (0.000240) SELECT * FROM users LIMIT 1 + SQL (0.000202) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:35:36) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000087)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00170 (589 reqs/sec) | DB: 0.00107 (63%) | 302 Found [http://test.host/users/1] + User Load (0.000247) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:35:36) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00467 (214 reqs/sec) | Rendering: 0.00401 (85%) | DB: 0.00053 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:35:36) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000272) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00401 (249 reqs/sec) | Rendering: 0.00315 (78%) | DB: 0.00052 (13%) | 200 OK [http://test.host/users] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:35:36) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00273 (365 reqs/sec) | Rendering: 0.00180 (65%) | DB: 0.00057 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000246) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:35:36) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00284 (351 reqs/sec) | Rendering: 0.00269 (94%) | DB: 0.00025 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:35:36) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00246 (406 reqs/sec) | DB: 0.00067 (27%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000634) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000274) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000224) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000225) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000238) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000214) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + Post Load (0.000185) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000139) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + Post Load (0.000262) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + SQL (0.000203) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:36:40) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000335) SELECT * FROM posts LIMIT 1 + SQL (0.000239) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:36:40) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000282) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00155 (644 reqs/sec) | DB: 0.00094 (60%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:36:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000341) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00642 (155 reqs/sec) | Rendering: 0.00531 (82%) | DB: 0.00117 (18%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:36:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000376) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000408) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00754 (132 reqs/sec) | Rendering: 0.00605 (80%) | DB: 0.00106 (14%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000402) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:36:40) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000491) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00413 (241 reqs/sec) | Rendering: 0.00256 (61%) | DB: 0.00122 (29%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000309) SELECT * FROM posts LIMIT 1 + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000325) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:36:40) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:36:40) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000290) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000180) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.08636 (11 reqs/sec) | DB: 0.00086 (0%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Update (0.000171) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Update (0.000126) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + SQL (0.000192) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:36:40) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000137) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00377 (265 reqs/sec) | DB: 0.00352 (93%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000230) SELECT count(*) AS count_all FROM users  + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:36:40) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000089)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00172 (579 reqs/sec) | DB: 0.00102 (59%) | 302 Found [http://test.host/users/1] + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:36:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00497 (201 reqs/sec) | Rendering: 0.00417 (83%) | DB: 0.00057 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000285) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:36:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00284 (75%) | DB: 0.00057 (15%) | 200 OK [http://test.host/users] + User Load (0.000274) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:36:40) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00293 (341 reqs/sec) | Rendering: 0.00197 (67%) | DB: 0.00058 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000246) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:36:40) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00261 (383 reqs/sec) | Rendering: 0.00248 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000247) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:36:40) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000117) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00249 (401 reqs/sec) | DB: 0.00064 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000621) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000242) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000275) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 1 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000214) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000222) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000235) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000256) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000114) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000232) SELECT * FROM posts LIMIT 1 + Post Load (0.000247) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000237) SELECT * FROM posts LIMIT 1 + SQL (0.000200) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:36:47) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000138) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + SQL (0.000192) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:36:47) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000330) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000090)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00172 (581 reqs/sec) | DB: 0.00086 (50%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000331) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:36:47) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000341) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000379) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00659 (151 reqs/sec) | Rendering: 0.00542 (82%) | DB: 0.00129 (19%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:36:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000314) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000402) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00503 (198 reqs/sec) | Rendering: 0.00363 (72%) | DB: 0.00098 (19%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000742) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:36:48) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000298) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000345) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00409 (244 reqs/sec) | Rendering: 0.00275 (67%) | DB: 0.00138 (33%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000593) SELECT * FROM posts LIMIT 1 + User Load (0.000346) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000317) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:36:48) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000289) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:36:48) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000315) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000179) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.08634 (11 reqs/sec) | DB: 0.00091 (1%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000134) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000130) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000318) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000279) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:36:48) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000136) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00355 (281 reqs/sec) | DB: 0.00356 (100%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000273) SELECT count(*) AS count_all FROM users  + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:36:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000357) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000100)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00202 (495 reqs/sec) | DB: 0.00115 (57%) | 302 Found [http://test.host/users/1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:36:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00450 (222 reqs/sec) | Rendering: 0.00383 (85%) | DB: 0.00054 (12%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000286) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:36:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00398 (251 reqs/sec) | Rendering: 0.00305 (76%) | DB: 0.00056 (14%) | 200 OK [http://test.host/users] + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:36:48) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00281 (355 reqs/sec) | Rendering: 0.00186 (66%) | DB: 0.00055 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:36:48) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00296 (337 reqs/sec) | Rendering: 0.00281 (94%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000245) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:36:48) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000117) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00248 (404 reqs/sec) | DB: 0.00064 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000613) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000277) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000289) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000235) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000218) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000235) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000256) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + Post Load (0.000187) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000119) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000137) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000240) SELECT * FROM posts LIMIT 1 + Post Load (0.000256) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + SQL (0.000225) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:38:05) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000158) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new + Post Load (0.000286) SELECT * FROM posts LIMIT 1 + SQL (0.000194) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:38:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000300) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000117)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00222 (449 reqs/sec) | DB: 0.00090 (40%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:38:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000315) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000358) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00821 (121 reqs/sec) | Rendering: 0.00713 (86%) | DB: 0.00126 (15%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000337) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:38:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000305) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index + User Load (0.000380) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00488 (204 reqs/sec) | Rendering: 0.00360 (73%) | DB: 0.00102 (20%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:38:05) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000329) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00251 (65%) | DB: 0.00090 (23%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000315) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:38:05) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:38:05) [PUT] + Session ID: + Parameters: {"only_path"=>true, "action"=>"update", "post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000303) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000182) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.08652 (11 reqs/sec) | DB: 0.00088 (1%) | 302 Found [http://test.host/users/1/posts/1?post=bodyblah+blah+blahtitlefirst+post] + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:38:05) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000150) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00363 (275 reqs/sec) | DB: 0.00350 (96%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000239) SELECT count(*) AS count_all FROM users  + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000185) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:38:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000092)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00182 (550 reqs/sec) | DB: 0.00104 (57%) | 302 Found [http://test.host/users/1] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:38:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00461 (216 reqs/sec) | Rendering: 0.00390 (84%) | DB: 0.00055 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000295) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:38:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000263) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00363 (275 reqs/sec) | Rendering: 0.00280 (77%) | DB: 0.00056 (15%) | 200 OK [http://test.host/users] + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:38:05) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00277 (361 reqs/sec) | Rendering: 0.00181 (65%) | DB: 0.00056 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:38:05) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00286 (350 reqs/sec) | Rendering: 0.00271 (94%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:38:05) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00250 (400 reqs/sec) | DB: 0.00066 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000612) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000271) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000332) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000179) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000228) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000235) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000256) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + Post Load (0.000247) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000240) SELECT * FROM posts LIMIT 1 + SQL (0.000187) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:38:26) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering layoutfalseactionnew within layouts/posts +Rendering posts/new + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:38:26) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000273) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00172 (581 reqs/sec) | DB: 0.00083 (47%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:38:26) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000310) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00649 (154 reqs/sec) | Rendering: 0.00539 (83%) | DB: 0.00118 (18%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:38:26) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000371) SELECT * FROM posts  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + User Load (0.000391) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00505 (198 reqs/sec) | Rendering: 0.00360 (71%) | DB: 0.00103 (20%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:38:26) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000295) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00408 (245 reqs/sec) | Rendering: 0.00271 (66%) | DB: 0.00095 (23%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:38:26) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000323) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:38:26) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000334) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000132) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000751) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00403 (248 reqs/sec) | DB: 0.00154 (38%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Update (0.000134) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000284) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:38:26) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000117) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00344 (290 reqs/sec) | DB: 0.00341 (99%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000229) SELECT count(*) AS count_all FROM users  + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:38:26) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000364) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000092)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00200 (500 reqs/sec) | DB: 0.00111 (55%) | 302 Found [http://test.host/users/1] + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:38:26) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000332) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00503 (198 reqs/sec) | Rendering: 0.00422 (84%) | DB: 0.00058 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000303) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:38:26) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000266) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00369 (271 reqs/sec) | Rendering: 0.00286 (77%) | DB: 0.00057 (15%) | 200 OK [http://test.host/users] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:38:26) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00282 (354 reqs/sec) | Rendering: 0.00182 (64%) | DB: 0.00059 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000246) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:38:26) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00262 (380 reqs/sec) | Rendering: 0.00249 (94%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000286) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:38:26) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000338) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000166) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00292 (342 reqs/sec) | DB: 0.00079 (27%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000602) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000318) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000361) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000109) UPDATE schema_info SET version = 1 + SQL (0.000233) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000294) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000100) UPDATE schema_info SET version = 2 + SQL (0.000187) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000262) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 3 + SQL (0.000737) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000289) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000253) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000118) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000240) SELECT * FROM posts LIMIT 1 + Post Load (0.000261) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + SQL (0.000189) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:40:31) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering layoutfalseactionnew within layouts/posts +Rendering posts/new + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:40:31) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000289) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00168 (596 reqs/sec) | DB: 0.00083 (49%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000379) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:40:31) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000320) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000314) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00861 (116 reqs/sec) | Rendering: 0.00757 (87%) | DB: 0.00128 (14%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000294) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:40:31) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000313) SELECT * FROM posts  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + User Load (0.000447) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00669 (149 reqs/sec) | Rendering: 0.00525 (78%) | DB: 0.00105 (15%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.002040) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:40:31) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.001522) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000373) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00562 (178 reqs/sec) | Rendering: 0.00290 (51%) | DB: 0.00393 (70%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:40:31) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:40:32) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000358) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000110) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00333 (300 reqs/sec) | DB: 0.00087 (26%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Update (0.000228) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000395) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000148) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:40:32) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000117) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00329 (303 reqs/sec) | DB: 0.00371 (112%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000213) SELECT count(*) AS count_all FROM users  + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000248) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:40:32) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000101)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00200 (501 reqs/sec) | DB: 0.00115 (57%) | 302 Found [http://test.host/users/1] + User Load (0.000461) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:40:32) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00466 (214 reqs/sec) | Rendering: 0.00389 (83%) | DB: 0.00080 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000333) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:40:32) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000267) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00361 (276 reqs/sec) | Rendering: 0.00278 (76%) | DB: 0.00060 (16%) | 200 OK [http://test.host/users] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:40:32) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00298 (335 reqs/sec) | Rendering: 0.00186 (62%) | DB: 0.00060 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:40:32) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00263 (380 reqs/sec) | Rendering: 0.00251 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:40:32) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000392) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000126) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00291 (343 reqs/sec) | DB: 0.00079 (27%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000601) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000281) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000222) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000177) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000181) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000321) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + SQL (0.000192) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:40:48) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000151) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 +Rendering layoutfalseactionnew within layouts/posts +Rendering posts/new + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:40:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000269) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00154 (650 reqs/sec) | DB: 0.00081 (52%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000356) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:40:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000361) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000356) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00657 (152 reqs/sec) | Rendering: 0.00542 (82%) | DB: 0.00139 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:40:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000270) SELECT * FROM posts  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00537 (186 reqs/sec) | Rendering: 0.00410 (76%) | DB: 0.00092 (17%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:40:48) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000292) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000383) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00414 (241 reqs/sec) | Rendering: 0.00275 (66%) | DB: 0.00095 (22%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:40:48) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} +Rendering within layouts/posts +Rendering posts/new + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:40:48) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + Post Load (0.000291) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000137) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00308 (324 reqs/sec) | DB: 0.00082 (26%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Update (0.000168) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000327) SELECT * FROM users LIMIT 1 + User Update (0.000146) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + SQL (0.000182) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:40:49) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000134) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00356 (280 reqs/sec) | DB: 0.00362 (101%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000230) SELECT count(*) AS count_all FROM users  + User Load (0.000263) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:40:49) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000091)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00177 (565 reqs/sec) | DB: 0.00105 (59%) | 302 Found [http://test.host/users/1] + User Load (0.000286) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:40:49) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00463 (215 reqs/sec) | Rendering: 0.00394 (85%) | DB: 0.00058 (12%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:40:49) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000337) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00409 (244 reqs/sec) | Rendering: 0.00308 (75%) | DB: 0.00059 (14%) | 200 OK [http://test.host/users] + User Load (0.000326) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:40:49) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00276 (362 reqs/sec) | Rendering: 0.00185 (67%) | DB: 0.00060 (21%) | 200 OK [http://test.host/users/1] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:40:49) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00296 (338 reqs/sec) | Rendering: 0.00280 (94%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000310) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:40:49) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000116) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00249 (402 reqs/sec) | DB: 0.00071 (28%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000609) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000259) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000282) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000225) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000178) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000254) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 1 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000255) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000256) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + Post Load (0.000211) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000150) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000311) SELECT * FROM posts LIMIT 1 + Post Load (0.000283) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000194) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:47:14) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000179) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000105) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:47:14) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000284) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00256 (389 reqs/sec) | DB: 0.00595 (232%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000201) SELECT count(*) AS count_all FROM posts  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:47:14) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00706 (141 reqs/sec) | Rendering: 0.00537 (76%) | DB: 0.00165 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000295) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:47:14) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000376) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00614 (162 reqs/sec) | Rendering: 0.00428 (69%) | DB: 0.00122 (19%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:47:14) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000268) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00458 (218 reqs/sec) | Rendering: 0.00254 (55%) | DB: 0.00115 (25%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000410) SELECT * FROM posts LIMIT 1 + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000284) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:47:14) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000327) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new + User Load (0.000358) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00505 (198 reqs/sec) | Rendering: 0.00370 (73%) | DB: 0.00167 (33%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:47:14) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.005232) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000191) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000155) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.01102 (90 reqs/sec) | DB: 0.00612 (55%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000364) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000297) SELECT * FROM users LIMIT 1 + User Update (0.000234) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000307) SELECT * FROM users LIMIT 1 + User Update (0.000158) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000306) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000268) SELECT * FROM users LIMIT 1 + SQL (0.000202) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:47:14) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000147) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00379 (263 reqs/sec) | DB: 0.00396 (104%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000267) SELECT count(*) AS count_all FROM users  + User Load (0.000275) SELECT * FROM users LIMIT 1 + SQL (0.000194) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:47:14) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000111)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00186 (537 reqs/sec) | DB: 0.00114 (61%) | 302 Found [http://test.host/users/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + User Load (0.000304) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:47:14) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00650 (153 reqs/sec) | Rendering: 0.00573 (88%) | DB: 0.00063 (9%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000344) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:47:14) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000414) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00414 (241 reqs/sec) | Rendering: 0.00304 (73%) | DB: 0.00076 (18%) | 200 OK [http://test.host/users] + User Load (0.000291) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:47:14) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00268 (71%) | DB: 0.00062 (16%) | 200 OK [http://test.host/users/1] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:47:14) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.09568 (10 reqs/sec) | Rendering: 0.09550 (99%) | DB: 0.00027 (0%) | 200 OK [http://test.host/users/new] + User Load (0.000298) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:47:14) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000149) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00337 (296 reqs/sec) | DB: 0.00078 (23%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000277) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000288) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000220) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000199) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000306) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000208) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + Post Load (0.000316) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:47:32) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000171) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000107) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:47:32) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00245 (408 reqs/sec) | DB: 0.00565 (230%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000179) SELECT count(*) AS count_all FROM posts  + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:47:32) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00640 (156 reqs/sec) | Rendering: 0.00477 (74%) | DB: 0.00152 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:47:32) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000389) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00554 (180 reqs/sec) | Rendering: 0.00388 (69%) | DB: 0.00118 (21%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:47:32) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00458 (218 reqs/sec) | Rendering: 0.00263 (57%) | DB: 0.00106 (23%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:47:32) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00450 (221 reqs/sec) | Rendering: 0.00330 (73%) | DB: 0.00137 (30%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000294) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:47:32) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000347) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000343) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00420 (237 reqs/sec) | DB: 0.00124 (29%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000131) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000272) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:47:33) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000143) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00339 (294 reqs/sec) | DB: 0.00351 (103%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000212) SELECT count(*) AS count_all FROM users  + User Load (0.000243) SELECT * FROM users LIMIT 1 + SQL (0.000183) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:47:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000107)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00174 (574 reqs/sec) | DB: 0.00102 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000198) SELECT count(*) AS count_all FROM users  + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:47:33) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00462 (216 reqs/sec) | Rendering: 0.00387 (83%) | DB: 0.00080 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:47:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000515) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00422 (237 reqs/sec) | Rendering: 0.00297 (70%) | DB: 0.00080 (18%) | 200 OK [http://test.host/users] + User Load (0.000277) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:47:33) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00317 (315 reqs/sec) | Rendering: 0.00205 (64%) | DB: 0.00055 (17%) | 200 OK [http://test.host/users/1] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:47:33) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00272 (367 reqs/sec) | Rendering: 0.00259 (95%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000290) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:47:33) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000173) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00294 (340 reqs/sec) | DB: 0.00076 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000617) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000266) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000290) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000230) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000211) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000264) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000212) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + Post Load (0.000185) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + Post Load (0.000278) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + SQL (0.000207) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:48:06) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000196) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000107) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:48:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00252 (396 reqs/sec) | DB: 0.00575 (228%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000228) SELECT count(*) AS count_all FROM posts  + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:48:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00659 (151 reqs/sec) | Rendering: 0.00485 (73%) | DB: 0.00169 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:48:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000349) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00570 (175 reqs/sec) | Rendering: 0.00407 (71%) | DB: 0.00114 (20%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:48:06) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000363) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00464 (215 reqs/sec) | Rendering: 0.00268 (57%) | DB: 0.00114 (24%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000389) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:48:06) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00386 (259 reqs/sec) | Rendering: 0.00296 (76%) | DB: 0.00119 (30%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:48:06) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000110) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00361 (277 reqs/sec) | DB: 0.00104 (28%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Update (0.000165) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000383) SELECT * FROM users LIMIT 1 + User Update (0.000181) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + SQL (0.000194) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:48:06) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000140) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00348 (287 reqs/sec) | DB: 0.00377 (108%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000224) SELECT count(*) AS count_all FROM users  + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:48:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000107)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00184 (542 reqs/sec) | DB: 0.00106 (57%) | 302 Found [http://test.host/users/1] + SQL (0.000216) SELECT count(*) AS count_all FROM users  + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:48:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00484 (206 reqs/sec) | Rendering: 0.00407 (84%) | DB: 0.00081 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000279) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:48:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00396 (252 reqs/sec) | Rendering: 0.00304 (76%) | DB: 0.00055 (13%) | 200 OK [http://test.host/users] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:48:06) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00291 (343 reqs/sec) | Rendering: 0.00192 (65%) | DB: 0.00058 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:48:06) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00305 (327 reqs/sec) | Rendering: 0.00292 (95%) | DB: 0.00027 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:48:06) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000116) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00263 (380 reqs/sec) | DB: 0.00068 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000604) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000290) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000817) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000410) UPDATE schema_info SET version = 1 + SQL (0.000538) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000273) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000104) UPDATE schema_info SET version = 2 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000264) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000239) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000327) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000256) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000265) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000214) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000357) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:51:24) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000166) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + SQL (0.000225) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:51:24) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00254 (393 reqs/sec) | DB: 0.00582 (228%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000182) SELECT count(*) AS count_all FROM posts  + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:51:24) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00645 (155 reqs/sec) | Rendering: 0.00478 (74%) | DB: 0.00155 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:51:24) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000335) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00555 (180 reqs/sec) | Rendering: 0.00394 (70%) | DB: 0.00114 (20%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:51:24) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00443 (225 reqs/sec) | Rendering: 0.00253 (57%) | DB: 0.00111 (24%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:51:24) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00420 (238 reqs/sec) | Rendering: 0.00320 (76%) | DB: 0.00059 (14%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:51:24) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000122) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00362 (276 reqs/sec) | DB: 0.00104 (28%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000136) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000290) SELECT * FROM users LIMIT 1 + User Load (0.000367) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000302) SELECT * FROM users LIMIT 1 + SQL (0.000259) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:51:24) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000141) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00334 (299 reqs/sec) | DB: 0.00375 (112%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000225) SELECT count(*) AS count_all FROM users  + User Load (0.000250) SELECT * FROM users LIMIT 1 + SQL (0.000182) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:51:24) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00172 (582 reqs/sec) | DB: 0.00104 (60%) | 302 Found [http://test.host/users/1] + SQL (0.000201) SELECT count(*) AS count_all FROM users  + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:51:24) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000370) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00498 (200 reqs/sec) | Rendering: 0.00417 (83%) | DB: 0.00082 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:51:24) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00408 (245 reqs/sec) | Rendering: 0.00319 (78%) | DB: 0.00054 (13%) | 200 OK [http://test.host/users] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:51:24) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00279 (358 reqs/sec) | Rendering: 0.00185 (66%) | DB: 0.00054 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:51:24) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00286 (350 reqs/sec) | Rendering: 0.00269 (94%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:51:24) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000134) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00272 (368 reqs/sec) | DB: 0.00069 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000605) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000291) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000229) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000319) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000236) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000256) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000211) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000265) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + Post Load (0.000169) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + Post Load (0.000282) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + SQL (0.000190) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:53:40) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000501) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000119) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:53:40) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00253 (395 reqs/sec) | DB: 0.00613 (242%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000179) SELECT count(*) AS count_all FROM posts  + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:53:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000250) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000332) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00689 (145 reqs/sec) | Rendering: 0.00505 (73%) | DB: 0.00163 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:53:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000341) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00570 (175 reqs/sec) | Rendering: 0.00399 (69%) | DB: 0.00114 (19%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:53:40) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00444 (225 reqs/sec) | Rendering: 0.00247 (55%) | DB: 0.00109 (24%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:53:40) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00388 (257 reqs/sec) | Rendering: 0.00299 (76%) | DB: 0.00056 (14%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:53:40) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00362 (276 reqs/sec) | DB: 0.00102 (28%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Update (0.000107) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000290) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:53:40) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000154) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00379 (263 reqs/sec) | DB: 0.00343 (90%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000172) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:53:40) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00173 (577 reqs/sec) | DB: 0.00081 (46%) | 302 Found [http://test.host/users/1] + SQL (0.000198) SELECT count(*) AS count_all FROM users  + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:53:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00458 (218 reqs/sec) | Rendering: 0.00388 (84%) | DB: 0.00074 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000423) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:53:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.002522) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00768 (130 reqs/sec) | Rendering: 0.00437 (56%) | DB: 0.00294 (38%) | 200 OK [http://test.host/users] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:53:40) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00332 (301 reqs/sec) | Rendering: 0.00210 (63%) | DB: 0.00054 (16%) | 200 OK [http://test.host/users/1] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:53:41) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00302 (330 reqs/sec) | Rendering: 0.00287 (95%) | DB: 0.00027 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000295) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:53:41) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000368) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000147) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00554 (180 reqs/sec) | DB: 0.00081 (14%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000612) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000274) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000294) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 2 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000220) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000365) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000231) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000205) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000185) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000221) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:54:01) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000166) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:54:01) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000234) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000111)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00251 (397 reqs/sec) | DB: 0.00564 (224%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000183) SELECT count(*) AS count_all FROM posts  + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:54:01) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000332) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000329) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000378) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00709 (141 reqs/sec) | Rendering: 0.00506 (71%) | DB: 0.00176 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:54:01) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000357) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00553 (180 reqs/sec) | Rendering: 0.00390 (70%) | DB: 0.00117 (21%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:54:01) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000347) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00483 (206 reqs/sec) | Rendering: 0.00270 (55%) | DB: 0.00117 (24%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:54:01) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00290 (77%) | DB: 0.00052 (13%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:54:01) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000161) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00390 (256 reqs/sec) | DB: 0.00112 (28%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000128) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000306) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000367) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:54:01) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000138) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00332 (301 reqs/sec) | DB: 0.00362 (109%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000220) SELECT count(*) AS count_all FROM users  + User Load (0.000293) SELECT * FROM users LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:54:01) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000115)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00196 (509 reqs/sec) | DB: 0.00118 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000220) SELECT count(*) AS count_all FROM users  + User Load (0.000285) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:54:01) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00450 (222 reqs/sec) | Rendering: 0.00382 (85%) | DB: 0.00080 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:54:01) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000307) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00390 (256 reqs/sec) | Rendering: 0.00297 (76%) | DB: 0.00057 (14%) | 200 OK [http://test.host/users] + User Load (0.000294) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:54:01) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00309 (323 reqs/sec) | Rendering: 0.00203 (65%) | DB: 0.00061 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:54:01) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00271 (369 reqs/sec) | Rendering: 0.00258 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:54:01) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000368) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000136) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00293 (341 reqs/sec) | DB: 0.00078 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000624) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000257) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000292) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000238) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000234) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000265) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000252) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000222) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000215) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000098) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + Post Load (0.000145) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000137) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000280) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000272) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000330) SELECT * FROM posts LIMIT 1 + SQL (0.000245) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:54:32) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000165) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000107) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:54:32) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00253 (395 reqs/sec) | DB: 0.00598 (236%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000183) SELECT count(*) AS count_all FROM posts  + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:54:32) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000259) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000359) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00683 (146 reqs/sec) | Rendering: 0.00508 (74%) | DB: 0.00160 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:54:32) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000619) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000376) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.01083 (92 reqs/sec) | Rendering: 0.00876 (80%) | DB: 0.00157 (14%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000303) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:54:32) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000251) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00454 (220 reqs/sec) | Rendering: 0.00255 (56%) | DB: 0.00117 (25%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:54:32) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00303 (77%) | DB: 0.00056 (14%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000332) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:54:32) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000168) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000138) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00413 (242 reqs/sec) | DB: 0.00126 (30%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000128) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000298) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000154) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + SQL (0.000239) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:54:32) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000139) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00339 (295 reqs/sec) | DB: 0.00360 (106%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000227) SELECT count(*) AS count_all FROM users  + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000185) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:54:32) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000116)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00207 (483 reqs/sec) | DB: 0.00111 (53%) | 302 Found [http://test.host/users/1] + SQL (0.000216) SELECT count(*) AS count_all FROM users  + User Load (0.000327) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:54:32) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00454 (220 reqs/sec) | Rendering: 0.00384 (84%) | DB: 0.00085 (18%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:54:32) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000354) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00415 (241 reqs/sec) | Rendering: 0.00311 (75%) | DB: 0.00064 (15%) | 200 OK [http://test.host/users] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:54:32) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00297 (336 reqs/sec) | Rendering: 0.00202 (67%) | DB: 0.00055 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:54:32) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00273 (366 reqs/sec) | Rendering: 0.00260 (95%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:54:32) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000368) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000128) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00319 (313 reqs/sec) | DB: 0.00077 (24%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000621) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000233) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000242) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000232) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000327) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000369) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000257) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000223) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000214) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000166) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000269) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:54:51) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000172) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000110) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + SQL (0.000198) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:54:51) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00249 (401 reqs/sec) | DB: 0.00599 (240%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000192) SELECT count(*) AS count_all FROM posts  + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:54:51) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00677 (147 reqs/sec) | Rendering: 0.00511 (75%) | DB: 0.00161 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:54:51) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000339) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00550 (181 reqs/sec) | Rendering: 0.00383 (69%) | DB: 0.00118 (21%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:54:51) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00456 (219 reqs/sec) | Rendering: 0.00250 (54%) | DB: 0.00118 (25%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:54:51) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00307 (78%) | DB: 0.00051 (13%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:54:51) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000121) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00366 (273 reqs/sec) | DB: 0.00104 (28%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000129) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000154) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000291) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000371) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:54:51) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000140) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00339 (295 reqs/sec) | DB: 0.00360 (106%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + User Load (0.000279) SELECT * FROM users LIMIT 1 + SQL (0.000199) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:54:51) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000345) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.001262)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00327 (305 reqs/sec) | DB: 0.00209 (63%) | 302 Found [http://test.host/users/1] + SQL (0.000239) SELECT count(*) AS count_all FROM users  + User Load (0.000431) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:54:51) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000430) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00663 (150 reqs/sec) | Rendering: 0.00557 (84%) | DB: 0.00110 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:54:51) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000269) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00536 (186 reqs/sec) | Rendering: 0.00446 (83%) | DB: 0.00054 (10%) | 200 OK [http://test.host/users] + User Load (0.000343) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:54:51) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00291 (344 reqs/sec) | Rendering: 0.00187 (64%) | DB: 0.00065 (22%) | 200 OK [http://test.host/users/1] + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:54:51) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00265 (377 reqs/sec) | Rendering: 0.00253 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000281) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:54:51) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000120) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00281 (356 reqs/sec) | DB: 0.00074 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000616) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000267) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000293) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000238) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000121) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000319) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000314) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 1 + SQL (0.000183) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000208) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + Post Load (0.000179) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000119) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + Post Load (0.000308) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + SQL (0.000238) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:55:00) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000181) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000108) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + Post Load (0.000306) SELECT * FROM posts LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:55:00) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00267 (374 reqs/sec) | DB: 0.00590 (221%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000192) SELECT count(*) AS count_all FROM posts  + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:55:00) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000359) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00675 (148 reqs/sec) | Rendering: 0.00501 (74%) | DB: 0.00166 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:55:00) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000357) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000355) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00574 (174 reqs/sec) | Rendering: 0.00391 (68%) | DB: 0.00123 (21%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:55:01) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000309) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00456 (219 reqs/sec) | Rendering: 0.00247 (54%) | DB: 0.00117 (25%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:55:01) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00298 (77%) | DB: 0.00053 (13%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:55:01) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00362 (276 reqs/sec) | DB: 0.00104 (28%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:55:01) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000136) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00337 (297 reqs/sec) | DB: 0.00350 (103%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000211) SELECT count(*) AS count_all FROM users  + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:55:01) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000104)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00168 (595 reqs/sec) | DB: 0.00100 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000212) SELECT count(*) AS count_all FROM users  + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:55:01) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00449 (222 reqs/sec) | Rendering: 0.00383 (85%) | DB: 0.00075 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:55:01) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000257) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00389 (257 reqs/sec) | Rendering: 0.00302 (77%) | DB: 0.00053 (13%) | 200 OK [http://test.host/users] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:55:01) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000359) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00301 (332 reqs/sec) | Rendering: 0.00190 (63%) | DB: 0.00062 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:55:01) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00285 (350 reqs/sec) | Rendering: 0.00272 (95%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:55:01) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00273 (366 reqs/sec) | DB: 0.00072 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000610) CREATE TABLE schema_info (version integer) + SQL (0.000101) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000285) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000195) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000205) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000269) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 13:55:47) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000209) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000127) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00663 (150 reqs/sec) | DB: 0.00483 (72%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000260) SELECT count(*) AS count_all FROM posts  + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 13:55:47) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00249 (401 reqs/sec) | DB: 0.00132 (52%) | 302 Found [http://test.host/users/1/posts/1] + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000179) SELECT count(*) AS count_all FROM posts  + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 13:55:47) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000367) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000315) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00690 (145 reqs/sec) | Rendering: 0.00494 (71%) | DB: 0.00172 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 13:55:47) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000318) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00547 (182 reqs/sec) | Rendering: 0.00390 (71%) | DB: 0.00110 (20%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000295) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 13:55:47) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00443 (225 reqs/sec) | Rendering: 0.00251 (56%) | DB: 0.00115 (25%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 13:55:47) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00397 (251 reqs/sec) | Rendering: 0.00299 (75%) | DB: 0.00059 (14%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 13:55:47) [PUT] + Session ID: + Parameters: {"only_path"=>true, "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000143) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000124) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00376 (266 reqs/sec) | DB: 0.00105 (28%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.000140) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000279) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 13:55:47) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000127) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00349 (286 reqs/sec) | DB: 0.00350 (100%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000224) SELECT count(*) AS count_all FROM users  + User Load (0.000294) SELECT * FROM users LIMIT 1 + SQL (0.000210) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 13:55:47) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000089)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00203 (493 reqs/sec) | DB: 0.00113 (55%) | 302 Found [http://test.host/users/1] + SQL (0.000245) SELECT count(*) AS count_all FROM users  + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 13:55:47) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00451 (221 reqs/sec) | Rendering: 0.00386 (85%) | DB: 0.00077 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 13:55:47) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000356) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00400 (249 reqs/sec) | Rendering: 0.00292 (72%) | DB: 0.00062 (15%) | 200 OK [http://test.host/users] + User Load (0.000453) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 13:55:47) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00309 (323 reqs/sec) | Rendering: 0.00206 (66%) | DB: 0.00076 (24%) | 200 OK [http://test.host/users/1] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 13:55:47) [GET] + Session ID: + Parameters: {"only_path"=>true, "action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00270 (369 reqs/sec) | Rendering: 0.00258 (95%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000285) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 13:55:47) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "only_path"=>true, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000808) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000158) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00435 (229 reqs/sec) | DB: 0.00125 (28%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000624) CREATE TABLE schema_info (version integer) + SQL (0.000107) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000289) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000239) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000242) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000236) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 3 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000215) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000185) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000610) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000269) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000296) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000235) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000320) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000247) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000610) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000276) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000301) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000230) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000320) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000262) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000230) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000127) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000627) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000255) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000319) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000256) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000297) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 1 + SQL (0.000183) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000618) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000257) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000285) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000231) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000262) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000287) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000242) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000226) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000336) CREATE TABLE schema_info (version integer) + SQL (0.000088) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000275) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000229) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000637) CREATE TABLE schema_info (version integer) + SQL (0.000098) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000270) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000288) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000228) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000268) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000208) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000605) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000221) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000213) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000257) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000207) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.001463) CREATE TABLE schema_info (version integer) + SQL (0.000099) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000353) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000267) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000229) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000090) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000247) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000208) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000279) SELECT * FROM posts LIMIT 1 + Post Load (0.000232) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000233) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000669) SELECT * FROM posts LIMIT 1 + Post Load (0.000397) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000342) SELECT * FROM posts LIMIT 1 + SQL (0.000434) SELECT count(*) AS count_all FROM posts  + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM posts  + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + Post Load (0.000365) SELECT * FROM posts LIMIT 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Update (0.000151) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + User Load (0.000262) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000716) CREATE TABLE schema_info (version integer) + SQL (0.000114) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000270) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000334) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000229) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000197) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000545) CREATE TABLE schema_info (version integer) + SQL (0.000200) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000285) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000276) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000259) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000101) UPDATE schema_info SET version = 2 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000271) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000200) UPDATE schema_info SET version = 3 + SQL (0.000444) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000603) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000110) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000699) SELECT * FROM posts LIMIT 1 + Post Load (0.000271) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000155) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000153) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000495) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000234) SELECT count(*) AS count_all FROM posts  + Post Load (0.000574) SELECT * FROM posts LIMIT 1 + SQL (0.000394) SELECT count(*) AS count_all FROM posts  + Post Load (0.000302) SELECT * FROM posts LIMIT 1 + Post Load (0.000434) SELECT * FROM posts LIMIT 1 + Post Load (0.000452) SELECT * FROM posts LIMIT 1 + Post Load (0.000312) SELECT * FROM posts LIMIT 1 + Post Load (0.000402) SELECT * FROM posts LIMIT 1 + User Load (0.000313) SELECT * FROM users LIMIT 1 + User Update (0.000195) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000279) SELECT * FROM users LIMIT 1 + User Update (0.000158) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + User Load (0.000455) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM users  + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000305) SELECT * FROM users LIMIT 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000610) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000230) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000205) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + Post Load (0.000166) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000158) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000341) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM posts  + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + Post Load (0.000239) SELECT * FROM posts LIMIT 1 + Post Load (0.000293) SELECT * FROM posts LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000291) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000389) SELECT * FROM users LIMIT 1 + User Update (0.000143) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.001208) SELECT * FROM users LIMIT 1 + SQL (0.000223) SELECT count(*) AS count_all FROM users  + User Load (0.000260) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000607) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000247) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000288) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000184) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000291) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000187) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000254) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000099) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000088) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000221) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000290) SELECT * FROM posts LIMIT 1 + Post Load (0.000186) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000233) SELECT count(*) AS count_all FROM posts  + Post Load (0.000293) SELECT * FROM posts LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM posts  + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Update (0.000108) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000319) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + User Load (0.000244) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:39:19) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00520 (192 reqs/sec) | Rendering: 0.00332 (63%) | DB: 0.01040 (199%) | 200 OK [http://test.host/users/1] + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000613) CREATE TABLE schema_info (version integer) + SQL (0.000098) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000273) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000294) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000234) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000231) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000284) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000231) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000284) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + Post Load (0.000186) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + Post Load (0.000255) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000227) SELECT count(*) AS count_all FROM posts  + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + SQL (0.000211) SELECT count(*) AS count_all FROM posts  + Post Load (0.000339) SELECT * FROM posts LIMIT 1 + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Update (0.000147) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000316) SELECT * FROM users LIMIT 1 + User Update (0.000222) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000498) SELECT * FROM users LIMIT 1 + User Load (0.000283) SELECT * FROM users LIMIT 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000281) SELECT * FROM users LIMIT 1 + User Load (0.000280) SELECT * FROM users LIMIT 1 + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + SQL (0.000187) SELECT count(*) AS count_all FROM users  + User Load (0.000264) SELECT * FROM users LIMIT 1 + SQL (0.000189) SELECT count(*) AS count_all FROM users  + User Load (0.000313) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:42:50) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000487) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00873 (114 reqs/sec) | Rendering: 0.00588 (67%) | DB: 0.01103 (126%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:42:50) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00281 (355 reqs/sec) | Rendering: 0.00191 (68%) | DB: 0.00082 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000604) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000263) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000293) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000235) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000237) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000242) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000168) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000156) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + Post Load (0.000257) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + SQL (0.000258) SELECT count(*) AS count_all FROM posts  + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM posts  + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000317) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + SQL (0.000236) SELECT count(*) AS count_all FROM users  + User Load (0.000264) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:44:23) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000347) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000121)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00297 (336 reqs/sec) | DB: 0.00986 (332%) | 302 Found [http://test.host/users/1] + SQL (0.000218) SELECT count(*) AS count_all FROM users  + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:44:23) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00483 (207 reqs/sec) | Rendering: 0.00417 (86%) | DB: 0.00076 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:44:24) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000257) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00359 (278 reqs/sec) | Rendering: 0.00279 (77%) | DB: 0.00051 (14%) | 200 OK [http://test.host/users] + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:44:24) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000734) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00342 (291 reqs/sec) | Rendering: 0.00193 (56%) | DB: 0.00099 (28%) | 200 OK [http://test.host/users/1] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:44:24) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00262 (381 reqs/sec) | Rendering: 0.00250 (95%) | DB: 0.00027 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000307) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000622) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000266) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000293) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000230) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000198) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000344) CREATE TABLE schema_info (version integer) + SQL (0.000088) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000238) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000215) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000215) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + Post Load (0.000180) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000138) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000112) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000258) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + SQL (0.000182) SELECT count(*) AS count_all FROM posts  + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Update (0.000152) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 14:45:06) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000164) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00375 (267 reqs/sec) | DB: 0.00899 (239%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000224) SELECT count(*) AS count_all FROM users  + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:45:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000103)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00172 (582 reqs/sec) | DB: 0.00102 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000216) SELECT count(*) AS count_all FROM users  + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:45:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00459 (217 reqs/sec) | Rendering: 0.00393 (85%) | DB: 0.00076 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:45:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00394 (253 reqs/sec) | Rendering: 0.00308 (78%) | DB: 0.00057 (14%) | 200 OK [http://test.host/users] + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:45:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00264 (379 reqs/sec) | Rendering: 0.00176 (66%) | DB: 0.00052 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000303) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:45:06) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00269 (95%) | DB: 0.00030 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 14:45:06) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000121) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00249 (401 reqs/sec) | DB: 0.00068 (27%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000607) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000308) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000235) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000243) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000237) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000272) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000179) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000214) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000118) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000353) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + SQL (0.000323) SELECT count(*) AS count_all FROM posts  + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + Post Load (0.000314) SELECT * FROM posts LIMIT 1 + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000139) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000403) SELECT * FROM users LIMIT 1 + SQL (0.000287) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 14:46:03) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000142) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00341 (292 reqs/sec) | DB: 0.00952 (278%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000217) SELECT count(*) AS count_all FROM users  + User Load (0.000245) SELECT * FROM users LIMIT 1 + SQL (0.000204) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:46:03) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000091)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00184 (542 reqs/sec) | DB: 0.00108 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000198) SELECT count(*) AS count_all FROM users  + User Load (0.000329) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:46:03) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00467 (214 reqs/sec) | Rendering: 0.00393 (84%) | DB: 0.00085 (18%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:46:03) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000269) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00391 (255 reqs/sec) | Rendering: 0.00308 (78%) | DB: 0.00052 (13%) | 200 OK [http://test.host/users] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:46:03) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00295 (339 reqs/sec) | Rendering: 0.00195 (66%) | DB: 0.00059 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:46:03) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00271 (368 reqs/sec) | Rendering: 0.00258 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000259) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000607) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000255) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000288) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000233) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000331) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000278) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000338) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000189) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 2 + SQL (0.000177) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000241) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + Post Load (0.000140) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000113) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000266) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + SQL (0.000247) SELECT count(*) AS count_all FROM posts  + Post Load (0.000300) SELECT * FROM posts LIMIT 1 + SQL (0.000366) SELECT count(*) AS count_all FROM posts  + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + User Update (0.000129) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000128) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 14:46:15) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000139) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00336 (297 reqs/sec) | DB: 0.00939 (279%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000216) SELECT count(*) AS count_all FROM users  + User Load (0.000271) SELECT * FROM users LIMIT 1 + SQL (0.000200) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:46:15) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000106)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00175 (569 reqs/sec) | DB: 0.00108 (61%) | 302 Found [http://test.host/users/1] + SQL (0.000202) SELECT count(*) AS count_all FROM users  + User Load (0.000281) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:46:15) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00480 (208 reqs/sec) | Rendering: 0.00411 (85%) | DB: 0.00078 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000310) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:46:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000263) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00372 (268 reqs/sec) | Rendering: 0.00288 (77%) | DB: 0.00057 (15%) | 200 OK [http://test.host/users] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:46:15) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00271 (368 reqs/sec) | Rendering: 0.00180 (66%) | DB: 0.00056 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:46:15) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00289 (346 reqs/sec) | Rendering: 0.00275 (95%) | DB: 0.00025 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 14:46:15) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00246 (405 reqs/sec) | DB: 0.00067 (27%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000249) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000285) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000092) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000261) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000263) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000220) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000289) SELECT * FROM posts LIMIT 1 + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000118) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000382) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + SQL (0.000228) SELECT count(*) AS count_all FROM posts  + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + Post Load (0.000313) SELECT * FROM posts LIMIT 1 + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000302) SELECT * FROM users LIMIT 1 + User Update (0.000128) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000128) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000294) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM users  + User Load (0.000276) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000602) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000263) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000287) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000181) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000236) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000171) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + Post Load (0.000260) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000226) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + Post Load (0.000398) SELECT * FROM posts LIMIT 1 + Post Load (0.000316) SELECT * FROM posts LIMIT 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + User Update (0.000221) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000275) SELECT * FROM users LIMIT 1 + SQL (0.000211) SELECT count(*) AS count_all FROM users  + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000609) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000257) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000288) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000237) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000240) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000247) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000099) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + Post Load (0.000140) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000276) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + User Update (0.000144) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000305) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000289) SELECT * FROM users LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 14:52:31) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000121) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00349 (286 reqs/sec) | DB: 0.00881 (252%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000317) SELECT count(*) AS count_all FROM users  + User Load (0.000345) SELECT * FROM users LIMIT 1 + SQL (0.000303) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:52:31) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000345) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000133)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00201 (497 reqs/sec) | DB: 0.00144 (71%) | 302 Found [http://test.host/users/1] + SQL (0.000251) SELECT count(*) AS count_all FROM users  + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:52:31) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00473 (211 reqs/sec) | Rendering: 0.00407 (86%) | DB: 0.00078 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:52:31) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00418 (239 reqs/sec) | Rendering: 0.00325 (77%) | DB: 0.00058 (13%) | 200 OK [http://test.host/users] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:52:31) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00295 (339 reqs/sec) | Rendering: 0.00200 (68%) | DB: 0.00058 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:52:31) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00266 (376 reqs/sec) | Rendering: 0.00253 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 14:52:31) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000142) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00313 (319 reqs/sec) | DB: 0.00073 (23%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000614) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000284) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000234) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000199) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000341) CREATE TABLE schema_info (version integer) + SQL (0.000092) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000197) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000234) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000119) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000275) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000318) SELECT * FROM users LIMIT 1 + User Update (0.000129) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000282) SELECT * FROM users LIMIT 1 + User Update (0.000126) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000322) SELECT * FROM users LIMIT 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Update (0.000138) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 14:52:39) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000117) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00331 (302 reqs/sec) | DB: 0.00912 (275%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000237) SELECT count(*) AS count_all FROM users  + User Load (0.000286) SELECT * FROM users LIMIT 1 + SQL (0.000189) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:52:39) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00174 (574 reqs/sec) | DB: 0.00110 (63%) | 302 Found [http://test.host/users/1] + SQL (0.000212) SELECT count(*) AS count_all FROM users  + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:52:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00468 (213 reqs/sec) | Rendering: 0.00400 (85%) | DB: 0.00078 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:52:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00375 (266 reqs/sec) | Rendering: 0.00290 (77%) | DB: 0.00054 (14%) | 200 OK [http://test.host/users] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:52:40) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00272 (368 reqs/sec) | Rendering: 0.00183 (67%) | DB: 0.00053 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:52:40) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00256 (390 reqs/sec) | Rendering: 0.00243 (94%) | DB: 0.00026 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 14:52:40) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000120) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00250 (399 reqs/sec) | DB: 0.00069 (27%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000619) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000284) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000229) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000098) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000198) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000337) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000235) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000255) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000287) SELECT * FROM posts LIMIT 1 + Post Load (0.000180) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000253) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + SQL (0.000228) SELECT count(*) AS count_all FROM posts  + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Update (0.000151) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 14:53:30) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000149) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00372 (269 reqs/sec) | DB: 0.00874 (235%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000302) SELECT count(*) AS count_all FROM users  + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:53:30) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00173 (576 reqs/sec) | DB: 0.00112 (64%) | 302 Found [http://test.host/users/1] + SQL (0.000202) SELECT count(*) AS count_all FROM users  + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:53:30) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00473 (211 reqs/sec) | Rendering: 0.00397 (84%) | DB: 0.00080 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:53:30) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000395) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00399 (250 reqs/sec) | Rendering: 0.00289 (72%) | DB: 0.00064 (16%) | 200 OK [http://test.host/users] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:53:30) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00280 (356 reqs/sec) | Rendering: 0.00179 (63%) | DB: 0.00058 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000253) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:53:30) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00271 (369 reqs/sec) | Rendering: 0.00258 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 14:53:30) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000134) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00259 (386 reqs/sec) | DB: 0.00069 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000619) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000249) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000284) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000240) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000236) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000283) SELECT * FROM posts LIMIT 1 + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000164) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000265) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + SQL (0.000225) SELECT count(*) AS count_all FROM posts  + Post Load (0.000840) SELECT * FROM posts LIMIT 1 + SQL (0.000234) SELECT count(*) AS count_all FROM posts  + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000326) SELECT * FROM users LIMIT 1 + User Load (0.000288) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000172) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 14:58:28) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000147) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00333 (300 reqs/sec) | DB: 0.00981 (294%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000218) SELECT count(*) AS count_all FROM users  + User Load (0.000263) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:58:28) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000355) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000113)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00197 (507 reqs/sec) | DB: 0.00113 (57%) | 302 Found [http://test.host/users/1] + SQL (0.000208) SELECT count(*) AS count_all FROM users  + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:58:28) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00479 (208 reqs/sec) | Rendering: 0.00411 (85%) | DB: 0.00074 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:58:28) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000256) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00367 (272 reqs/sec) | Rendering: 0.00280 (76%) | DB: 0.00051 (13%) | 200 OK [http://test.host/users] + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:58:28) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00273 (366 reqs/sec) | Rendering: 0.00185 (68%) | DB: 0.00052 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:58:28) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00265 (377 reqs/sec) | Rendering: 0.00252 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 14:58:28) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000140) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00264 (378 reqs/sec) | DB: 0.00070 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000608) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000271) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000290) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000245) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000088) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000261) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000271) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000233) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000230) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + Post Load (0.000153) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000165) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000279) SELECT * FROM posts LIMIT 1 + Post Load (0.000274) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + SQL (0.000257) SELECT count(*) AS count_all FROM posts  + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Update (0.000125) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000130) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000313) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + SQL (0.000189) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 14:59:47) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000128) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00362 (276 reqs/sec) | DB: 0.00906 (250%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000246) SELECT count(*) AS count_all FROM users  + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000187) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 14:59:47) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000104)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00184 (543 reqs/sec) | DB: 0.00107 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000263) SELECT count(*) AS count_all FROM users  + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 14:59:47) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00463 (216 reqs/sec) | Rendering: 0.00396 (85%) | DB: 0.00082 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000284) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 14:59:47) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000261) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00367 (272 reqs/sec) | Rendering: 0.00277 (75%) | DB: 0.00055 (14%) | 200 OK [http://test.host/users] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 14:59:47) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00267 (374 reqs/sec) | Rendering: 0.00179 (66%) | DB: 0.00053 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 14:59:47) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00259 (385 reqs/sec) | Rendering: 0.00246 (94%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 14:59:47) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000121) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00248 (403 reqs/sec) | DB: 0.00068 (27%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000601) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000285) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000228) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000320) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000628) CREATE TABLE schema_info (version integer) + SQL (0.000097) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000270) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000308) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000247) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000314) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000265) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000631) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000258) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000287) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000231) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000273) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000214) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000320) SELECT * FROM posts LIMIT 1 + Post Load (0.000156) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000253) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000220) SELECT count(*) AS count_all FROM posts  + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000171) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:00:47) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000279) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00367 (272 reqs/sec) | DB: 0.00548 (149%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000203) SELECT count(*) AS count_all FROM posts  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000399) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:00:47) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000372) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000293) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00719 (139 reqs/sec) | Rendering: 0.00527 (73%) | DB: 0.00184 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + Post Load (0.000315) SELECT * FROM posts LIMIT 1 + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:00:47) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000275) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00470 (212 reqs/sec) | Rendering: 0.00252 (53%) | DB: 0.00185 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:00:47) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000159) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00387 (258 reqs/sec) | DB: 0.00162 (41%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:00:47) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000120) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00331 (301 reqs/sec) | DB: 0.00341 (103%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000215) SELECT count(*) AS count_all FROM users  + User Load (0.000258) SELECT * FROM users LIMIT 1 + SQL (0.000183) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:00:47) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000111)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00189 (527 reqs/sec) | DB: 0.00110 (57%) | 302 Found [http://test.host/users/1] + SQL (0.000211) SELECT count(*) AS count_all FROM users  + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:00:47) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00507 (197 reqs/sec) | Rendering: 0.00436 (86%) | DB: 0.00077 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:00:47) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000257) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00359 (278 reqs/sec) | Rendering: 0.00278 (77%) | DB: 0.00051 (14%) | 200 OK [http://test.host/users] + User Load (0.000299) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:00:47) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00285 (351 reqs/sec) | Rendering: 0.00183 (64%) | DB: 0.00063 (22%) | 200 OK [http://test.host/users/1] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:00:47) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00261 (382 reqs/sec) | Rendering: 0.00249 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:00:47) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000124) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00275 (363 reqs/sec) | DB: 0.00070 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000612) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000273) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000292) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000233) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000261) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000286) SELECT * FROM posts LIMIT 1 + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000172) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000312) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000402) SELECT * FROM posts LIMIT 1 + SQL (0.000248) SELECT count(*) AS count_all FROM posts  + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000175) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:01:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000288) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000089)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00360 (277 reqs/sec) | DB: 0.00566 (157%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000205) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:01:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00725 (137 reqs/sec) | Rendering: 0.00557 (76%) | DB: 0.00160 (22%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000284) SELECT * FROM posts LIMIT 1 + Post Load (0.000303) SELECT * FROM posts LIMIT 1 + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:01:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000334) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000392) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00483 (207 reqs/sec) | Rendering: 0.00252 (52%) | DB: 0.00187 (38%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:01:05) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000250) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000164) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000130) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00386 (258 reqs/sec) | DB: 0.00161 (41%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000292) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000290) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Update (0.000140) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:01:05) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000116) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00331 (302 reqs/sec) | DB: 0.00350 (106%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000211) SELECT count(*) AS count_all FROM users  + User Load (0.000266) SELECT * FROM users LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:01:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000090)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00169 (593 reqs/sec) | DB: 0.00103 (60%) | 302 Found [http://test.host/users/1] + SQL (0.000195) SELECT count(*) AS count_all FROM users  + User Load (0.000245) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:01:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00444 (225 reqs/sec) | Rendering: 0.00379 (85%) | DB: 0.00072 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:01:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000272) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00357 (280 reqs/sec) | Rendering: 0.00274 (76%) | DB: 0.00053 (14%) | 200 OK [http://test.host/users] + User Load (0.000274) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:01:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00273 (366 reqs/sec) | Rendering: 0.00183 (67%) | DB: 0.00055 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:01:05) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00261 (383 reqs/sec) | Rendering: 0.00248 (95%) | DB: 0.00027 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:01:05) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000145) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00299 (334 reqs/sec) | DB: 0.00073 (24%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000101) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000272) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000306) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000236) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000239) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000192) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000217) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000247) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000263) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000298) SELECT * FROM posts LIMIT 1 + Post Load (0.000223) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + Post Load (0.000284) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + SQL (0.000228) SELECT count(*) AS count_all FROM posts  + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:02:49) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000167) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000110) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00545 (183 reqs/sec) | DB: 0.00531 (97%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000326) SELECT count(*) AS count_all FROM posts  + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000170) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:02:49) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00246 (406 reqs/sec) | DB: 0.00162 (65%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000207) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:02:49) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000404) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00707 (141 reqs/sec) | Rendering: 0.00522 (73%) | DB: 0.00170 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:02:49) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000576) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000389) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00660 (151 reqs/sec) | Rendering: 0.00441 (66%) | DB: 0.00178 (26%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:02:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000315) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00437 (228 reqs/sec) | Rendering: 0.00253 (57%) | DB: 0.00132 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:02:49) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00407 (245 reqs/sec) | Rendering: 0.00316 (77%) | DB: 0.00084 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000341) SELECT * FROM posts LIMIT 1 + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:02:49) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000265) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000145) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000161) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00413 (242 reqs/sec) | DB: 0.00151 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000276) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:02:49) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000127) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00354 (282 reqs/sec) | DB: 0.00346 (97%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000268) SELECT count(*) AS count_all FROM users  + User Load (0.000269) SELECT * FROM users LIMIT 1 + SQL (0.000183) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:02:49) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000090)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00174 (576 reqs/sec) | DB: 0.00108 (62%) | 302 Found [http://test.host/users/1] + SQL (0.000209) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:02:49) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00463 (216 reqs/sec) | Rendering: 0.00392 (84%) | DB: 0.00077 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000274) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:02:49) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00294 (76%) | DB: 0.00055 (14%) | 200 OK [http://test.host/users] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:02:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00302 (331 reqs/sec) | Rendering: 0.00200 (66%) | DB: 0.00056 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:02:49) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00277 (360 reqs/sec) | Rendering: 0.00264 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:02:49) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000119) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00274 (364 reqs/sec) | DB: 0.00071 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000613) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 1 + SQL (0.000181) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000240) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000234) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000199) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000300) SELECT * FROM posts LIMIT 1 + Post Load (0.000169) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000292) SELECT * FROM posts LIMIT 1 + Post Load (0.000273) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + User Load (0.000240) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:03:14) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000123) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000389) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00765 (130 reqs/sec) | DB: 0.00533 (69%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000309) SELECT count(*) AS count_all FROM posts  + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000171) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:03:14) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000133)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00282 (354 reqs/sec) | DB: 0.00166 (58%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000298) SELECT count(*) AS count_all FROM posts  + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:03:14) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000345) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00667 (149 reqs/sec) | Rendering: 0.00486 (72%) | DB: 0.00170 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:03:14) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000384) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00567 (176 reqs/sec) | Rendering: 0.00402 (70%) | DB: 0.00142 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:03:14) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000374) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00463 (215 reqs/sec) | Rendering: 0.00273 (59%) | DB: 0.00140 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:03:14) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00373 (268 reqs/sec) | Rendering: 0.00289 (77%) | DB: 0.00076 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:03:14) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000153) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000171) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00442 (226 reqs/sec) | DB: 0.00140 (31%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000293) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:03:14) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000115) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00331 (302 reqs/sec) | DB: 0.00352 (106%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000216) SELECT count(*) AS count_all FROM users  + User Load (0.000271) SELECT * FROM users LIMIT 1 + SQL (0.000216) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:03:14) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000099)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00178 (562 reqs/sec) | DB: 0.00110 (61%) | 302 Found [http://test.host/users/1] + SQL (0.000201) SELECT count(*) AS count_all FROM users  + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:03:14) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00474 (210 reqs/sec) | Rendering: 0.00407 (85%) | DB: 0.00075 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000279) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:03:14) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00384 (260 reqs/sec) | Rendering: 0.00292 (76%) | DB: 0.00057 (14%) | 200 OK [http://test.host/users] + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:03:14) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000348) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00301 (332 reqs/sec) | Rendering: 0.00189 (63%) | DB: 0.00061 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:03:14) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00270 (370 reqs/sec) | Rendering: 0.00257 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000291) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:03:14) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000140) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00270 (370 reqs/sec) | DB: 0.00073 (27%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000614) CREATE TABLE schema_info (version integer) + SQL (0.000092) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000290) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000238) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000199) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000238) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000266) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + Post Load (0.000140) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000118) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + Post Load (0.000358) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + SQL (0.000250) SELECT count(*) AS count_all FROM posts  + User Load (0.000246) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:05:20) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000349) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000214) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000139) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00597 (167 reqs/sec) | DB: 0.00531 (88%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000260) SELECT count(*) AS count_all FROM posts  + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000172) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:05:20) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000259) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000118)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00272 (368 reqs/sec) | DB: 0.00158 (58%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000233) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:05:20) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000234) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00643 (155 reqs/sec) | Rendering: 0.00483 (75%) | DB: 0.00153 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000339) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:05:20) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000470) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000426) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00637 (157 reqs/sec) | Rendering: 0.00442 (69%) | DB: 0.00179 (28%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000283) SELECT * FROM posts LIMIT 1 + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:05:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000515) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00477 (209 reqs/sec) | Rendering: 0.00264 (55%) | DB: 0.00160 (33%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:05:20) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00409 (244 reqs/sec) | Rendering: 0.00311 (76%) | DB: 0.00079 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:05:20) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000140) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000109) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00362 (276 reqs/sec) | DB: 0.00124 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000376) SELECT * FROM users LIMIT 1 + User Update (0.000201) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000309) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000283) SELECT * FROM users LIMIT 1 + SQL (0.000227) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:05:20) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000120) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00339 (294 reqs/sec) | DB: 0.00375 (110%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000216) SELECT count(*) AS count_all FROM users  + User Load (0.000242) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:05:20) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000095)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00195 (511 reqs/sec) | DB: 0.00106 (54%) | 302 Found [http://test.host/users/1] + SQL (0.000250) SELECT count(*) AS count_all FROM users  + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:05:20) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00468 (213 reqs/sec) | Rendering: 0.00402 (85%) | DB: 0.00082 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:05:20) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000328) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00420 (238 reqs/sec) | Rendering: 0.00312 (74%) | DB: 0.00060 (14%) | 200 OK [http://test.host/users] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:05:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00313 (319 reqs/sec) | Rendering: 0.00200 (63%) | DB: 0.00060 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:05:20) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00275 (363 reqs/sec) | Rendering: 0.00261 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:05:20) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000117) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00266 (375 reqs/sec) | DB: 0.00067 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000607) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000292) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000324) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000235) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000264) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 2 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000224) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000279) SELECT * FROM posts LIMIT 1 + Post Load (0.000161) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + Post Load (0.000253) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + SQL (0.000223) SELECT count(*) AS count_all FROM posts  + User Load (0.000243) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:05:40) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000113) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00537 (186 reqs/sec) | DB: 0.00516 (96%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000253) SELECT count(*) AS count_all FROM posts  + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000164) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:05:40) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00243 (411 reqs/sec) | DB: 0.00151 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000234) SELECT count(*) AS count_all FROM posts  + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:05:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000277) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00677 (147 reqs/sec) | Rendering: 0.00489 (72%) | DB: 0.00171 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:05:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000465) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00624 (160 reqs/sec) | Rendering: 0.00439 (70%) | DB: 0.00154 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + User Load (0.000351) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:05:40) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000324) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000405) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00646 (154 reqs/sec) | Rendering: 0.00327 (50%) | DB: 0.00168 (25%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:05:40) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00392 (254 reqs/sec) | Rendering: 0.00297 (75%) | DB: 0.00075 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:05:40) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000315) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000158) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00403 (247 reqs/sec) | DB: 0.00137 (33%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Update (0.000136) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000272) SELECT * FROM users LIMIT 1 + User Update (0.000137) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:05:40) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000144) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00353 (283 reqs/sec) | DB: 0.00353 (100%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000225) SELECT count(*) AS count_all FROM users  + User Load (0.000257) SELECT * FROM users LIMIT 1 + SQL (0.000183) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:05:40) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000089)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00173 (578 reqs/sec) | DB: 0.00103 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000197) SELECT count(*) AS count_all FROM users  + User Load (0.000244) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:05:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00476 (210 reqs/sec) | Rendering: 0.00397 (83%) | DB: 0.00078 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:05:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00391 (255 reqs/sec) | Rendering: 0.00302 (77%) | DB: 0.00055 (13%) | 200 OK [http://test.host/users] + User Load (0.000311) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:05:40) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00306 (326 reqs/sec) | Rendering: 0.00205 (66%) | DB: 0.00060 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:05:40) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00289 (345 reqs/sec) | Rendering: 0.00276 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:05:40) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000131) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00285 (350 reqs/sec) | DB: 0.00077 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000603) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000295) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000234) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + Post Load (0.000182) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000135) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:10:48) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000211) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000122) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00605 (165 reqs/sec) | DB: 0.00520 (85%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000259) SELECT count(*) AS count_all FROM posts  + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000170) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:10:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00247 (404 reqs/sec) | DB: 0.00155 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000208) SELECT count(*) AS count_all FROM posts  + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:10:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00648 (154 reqs/sec) | Rendering: 0.00488 (75%) | DB: 0.00153 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:10:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000342) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00556 (180 reqs/sec) | Rendering: 0.00392 (70%) | DB: 0.00138 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:10:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000322) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00469 (213 reqs/sec) | Rendering: 0.00257 (54%) | DB: 0.00154 (32%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:10:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00390 (256 reqs/sec) | Rendering: 0.00296 (76%) | DB: 0.00075 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:10:48) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00368 (271 reqs/sec) | DB: 0.00139 (37%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000276) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:10:48) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000116) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00329 (304 reqs/sec) | DB: 0.00343 (104%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000212) SELECT count(*) AS count_all FROM users  + User Load (0.000308) SELECT * FROM users LIMIT 1 + SQL (0.000187) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:10:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000357) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000098)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00198 (504 reqs/sec) | DB: 0.00116 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000209) SELECT count(*) AS count_all FROM users  + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:10:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00477 (209 reqs/sec) | Rendering: 0.00411 (86%) | DB: 0.00074 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:10:49) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00296 (76%) | DB: 0.00054 (13%) | 200 OK [http://test.host/users] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:10:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000354) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00311 (321 reqs/sec) | Rendering: 0.00194 (62%) | DB: 0.00062 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:10:49) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00272 (367 reqs/sec) | Rendering: 0.00259 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:10:49) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000126) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00266 (376 reqs/sec) | DB: 0.00069 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000631) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000249) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000284) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000235) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000103) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000262) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000214) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000621) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000247) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000290) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000215) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000236) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000221) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000337) SELECT * FROM posts LIMIT 1 + Post Load (0.000154) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000159) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000165) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + Post Load (0.000290) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + SQL (0.000221) SELECT count(*) AS count_all FROM posts  + User Load (0.000239) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:11:14) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000118) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00610 (163 reqs/sec) | DB: 0.00535 (87%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000254) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000174) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:11:14) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000315) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000288) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000111)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00282 (355 reqs/sec) | DB: 0.00141 (49%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000247) SELECT count(*) AS count_all FROM posts  + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000254) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:11:14) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00671 (149 reqs/sec) | Rendering: 0.00498 (74%) | DB: 0.00167 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:11:14) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.002053) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000394) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00886 (112 reqs/sec) | Rendering: 0.00521 (58%) | DB: 0.00324 (36%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:11:14) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000327) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00435 (230 reqs/sec) | Rendering: 0.00248 (57%) | DB: 0.00138 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:11:14) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00382 (261 reqs/sec) | Rendering: 0.00296 (77%) | DB: 0.00074 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:11:14) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000260) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00360 (277 reqs/sec) | DB: 0.00134 (37%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:11:14) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000116) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00333 (300 reqs/sec) | DB: 0.00346 (104%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000233) SELECT count(*) AS count_all FROM users  + User Load (0.000265) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:11:14) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000116)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00177 (563 reqs/sec) | DB: 0.00107 (60%) | 302 Found [http://test.host/users/1] + SQL (0.000204) SELECT count(*) AS count_all FROM users  + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:11:14) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00488 (204 reqs/sec) | Rendering: 0.00413 (84%) | DB: 0.00077 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:11:14) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00379 (263 reqs/sec) | Rendering: 0.00289 (76%) | DB: 0.00056 (14%) | 200 OK [http://test.host/users] + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:11:14) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000355) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00298 (335 reqs/sec) | Rendering: 0.00186 (62%) | DB: 0.00061 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:11:14) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00305 (327 reqs/sec) | Rendering: 0.00288 (94%) | DB: 0.00027 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000350) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:11:14) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000133) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00269 (371 reqs/sec) | DB: 0.00080 (29%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] + Post Load (0.000392) SELECT * FROM posts WHERE (posts.user_id = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000611) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000256) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000231) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000264) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000620) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000285) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000231) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000255) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000205) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000288) SELECT * FROM posts LIMIT 1 + Post Load (0.000143) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + Post Load (0.000261) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + SQL (0.000242) SELECT count(*) AS count_all FROM posts  + User Load (0.000284) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:14:15) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000173) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000109) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00531 (188 reqs/sec) | DB: 0.00517 (97%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000251) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000165) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:14:15) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000261) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00263 (380 reqs/sec) | DB: 0.00154 (58%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000230) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000395) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:14:15) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000275) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00684 (146 reqs/sec) | Rendering: 0.00504 (73%) | DB: 0.00179 (26%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000337) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:14:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000365) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00559 (178 reqs/sec) | Rendering: 0.00395 (70%) | DB: 0.00147 (26%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:14:15) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000386) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000260) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000365) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00491 (203 reqs/sec) | Rendering: 0.00276 (56%) | DB: 0.00152 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:14:15) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00391 (256 reqs/sec) | Rendering: 0.00305 (78%) | DB: 0.00074 (18%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:14:15) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00362 (275 reqs/sec) | DB: 0.00127 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000283) SELECT * FROM users LIMIT 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:14:15) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000146) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00358 (279 reqs/sec) | DB: 0.00353 (98%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000234) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:14:15) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000088)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00168 (595 reqs/sec) | DB: 0.00103 (61%) | 302 Found [http://test.host/users/1] + SQL (0.000192) SELECT count(*) AS count_all FROM users  + User Load (0.000244) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:14:15) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000341) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00480 (208 reqs/sec) | Rendering: 0.00401 (83%) | DB: 0.00078 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:14:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000355) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00398 (251 reqs/sec) | Rendering: 0.00293 (73%) | DB: 0.00062 (15%) | 200 OK [http://test.host/users] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:14:15) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00295 (338 reqs/sec) | Rendering: 0.00187 (63%) | DB: 0.00060 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000253) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:14:15) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00270 (95%) | DB: 0.00025 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:14:15) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00265 (377 reqs/sec) | DB: 0.00069 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000617) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000289) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000244) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000256) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000319) SELECT * FROM posts LIMIT 1 + Post Load (0.000145) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000262) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + User Load (0.000244) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:14:55) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000175) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000106) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00551 (181 reqs/sec) | DB: 0.00512 (92%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000321) SELECT count(*) AS count_all FROM posts  + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000165) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:14:55) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000114)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00258 (387 reqs/sec) | DB: 0.00161 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000213) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:14:55) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000389) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00707 (141 reqs/sec) | Rendering: 0.00537 (75%) | DB: 0.00160 (22%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000395) SELECT * FROM posts LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:14:55) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000374) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000382) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00667 (149 reqs/sec) | Rendering: 0.00472 (70%) | DB: 0.00170 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000295) SELECT * FROM posts LIMIT 1 + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:14:55) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000309) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000424) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00759 (131 reqs/sec) | Rendering: 0.00339 (44%) | DB: 0.00157 (20%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:14:55) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00378 (264 reqs/sec) | Rendering: 0.00292 (77%) | DB: 0.00077 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:14:55) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00370 (270 reqs/sec) | DB: 0.00130 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000442) SELECT * FROM users LIMIT 1 + User Update (0.000157) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000156) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000287) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000287) SELECT * FROM users LIMIT 1 + SQL (0.000211) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:14:55) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000153) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00373 (268 reqs/sec) | DB: 0.00384 (102%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000236) SELECT count(*) AS count_all FROM users  + User Load (0.000244) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:14:55) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000089)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00174 (575 reqs/sec) | DB: 0.00103 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000198) SELECT count(*) AS count_all FROM users  + User Load (0.000342) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:14:55) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00464 (215 reqs/sec) | Rendering: 0.00390 (84%) | DB: 0.00082 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:14:55) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00388 (257 reqs/sec) | Rendering: 0.00299 (76%) | DB: 0.00055 (14%) | 200 OK [http://test.host/users] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:14:55) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00302 (331 reqs/sec) | Rendering: 0.00198 (65%) | DB: 0.00058 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:14:55) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00275 (363 reqs/sec) | Rendering: 0.00261 (94%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:14:55) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00265 (377 reqs/sec) | DB: 0.00066 (24%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000612) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000177) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000229) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000237) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000101) UPDATE schema_info SET version = 3 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000212) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + Post Load (0.000329) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000307) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + SQL (0.000230) SELECT count(*) AS count_all FROM posts  + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:15:07) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000108) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00543 (184 reqs/sec) | DB: 0.00535 (98%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000316) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000165) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:15:07) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00249 (402 reqs/sec) | DB: 0.00157 (63%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000288) SELECT count(*) AS count_all FROM posts  + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:15:07) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000298) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000371) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00687 (145 reqs/sec) | Rendering: 0.00488 (70%) | DB: 0.00184 (26%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000304) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:15:07) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000337) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00542 (184 reqs/sec) | Rendering: 0.00383 (70%) | DB: 0.00142 (26%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:15:07) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00446 (224 reqs/sec) | Rendering: 0.00252 (56%) | DB: 0.00134 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:15:07) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00288 (74%) | DB: 0.00082 (21%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:15:07) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000278) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000118) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00381 (262 reqs/sec) | DB: 0.00137 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + SQL (0.000264) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:15:07) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000122) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00340 (293 reqs/sec) | DB: 0.00353 (103%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000228) SELECT count(*) AS count_all FROM users  + User Load (0.000262) SELECT * FROM users LIMIT 1 + SQL (0.000182) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:15:07) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000446) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00212 (472 reqs/sec) | DB: 0.00122 (57%) | 302 Found [http://test.host/users/1] + SQL (0.000206) SELECT count(*) AS count_all FROM users  + User Load (0.000245) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:15:07) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00465 (215 reqs/sec) | Rendering: 0.00399 (85%) | DB: 0.00073 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000294) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:15:07) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00399 (250 reqs/sec) | Rendering: 0.00307 (77%) | DB: 0.00058 (14%) | 200 OK [http://test.host/users] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:15:07) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00278 (360 reqs/sec) | Rendering: 0.00182 (65%) | DB: 0.00054 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:15:07) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00271 (368 reqs/sec) | Rendering: 0.00258 (95%) | DB: 0.00027 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:15:07) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000144) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00295 (339 reqs/sec) | DB: 0.00077 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000596) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000301) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 1 + SQL (0.000179) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000235) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000238) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000341) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000361) SELECT * FROM posts LIMIT 1 + Post Load (0.000151) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000118) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + SQL (0.000223) SELECT count(*) AS count_all FROM posts  + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:16:33) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000202) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000118) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000254) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00556 (179 reqs/sec) | DB: 0.00525 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000260) SELECT count(*) AS count_all FROM posts  + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000169) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:16:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00242 (412 reqs/sec) | DB: 0.00155 (63%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000204) SELECT count(*) AS count_all FROM posts  + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:16:33) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000262) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000355) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00712 (140 reqs/sec) | Rendering: 0.00528 (74%) | DB: 0.00164 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000345) SELECT * FROM posts LIMIT 1 + User Load (0.000499) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:16:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000438) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000378) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00640 (156 reqs/sec) | Rendering: 0.00415 (64%) | DB: 0.00192 (30%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:16:33) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000300) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000396) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00493 (203 reqs/sec) | Rendering: 0.00275 (55%) | DB: 0.00148 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:16:33) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000357) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00422 (237 reqs/sec) | Rendering: 0.00311 (73%) | DB: 0.00090 (21%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:16:33) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000248) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000143) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000108) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00359 (278 reqs/sec) | DB: 0.00129 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Update (0.000133) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000272) SELECT * FROM users LIMIT 1 + SQL (0.000200) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:16:33) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000148) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00391 (256 reqs/sec) | DB: 0.00355 (90%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000239) SELECT count(*) AS count_all FROM users  + User Load (0.000281) SELECT * FROM users LIMIT 1 + SQL (0.000221) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:16:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000089)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00179 (557 reqs/sec) | DB: 0.00114 (63%) | 302 Found [http://test.host/users/1] + SQL (0.000197) SELECT count(*) AS count_all FROM users  + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:16:33) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00461 (217 reqs/sec) | Rendering: 0.00396 (85%) | DB: 0.00075 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:16:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000323) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00394 (254 reqs/sec) | Rendering: 0.00295 (74%) | DB: 0.00060 (15%) | 200 OK [http://test.host/users] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:16:33) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00281 (355 reqs/sec) | Rendering: 0.00186 (66%) | DB: 0.00054 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000274) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:16:33) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00296 (337 reqs/sec) | Rendering: 0.00282 (95%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:16:33) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00263 (380 reqs/sec) | DB: 0.00068 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000732) CREATE TABLE schema_info (version integer) + SQL (0.000097) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000307) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000301) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000220) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000235) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000254) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000226) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000202) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000256) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000303) SELECT * FROM posts LIMIT 1 + Post Load (0.000150) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000190) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + Post Load (0.000265) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + SQL (0.000247) SELECT count(*) AS count_all FROM posts  + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:21:41) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000171) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000109) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00538 (185 reqs/sec) | DB: 0.00541 (100%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000251) SELECT count(*) AS count_all FROM posts  + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000164) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:21:41) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00250 (399 reqs/sec) | DB: 0.00156 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000207) SELECT count(*) AS count_all FROM posts  + Post Load (0.000354) SELECT * FROM posts LIMIT 1 + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:21:41) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000349) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00684 (146 reqs/sec) | Rendering: 0.00511 (74%) | DB: 0.00172 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:21:41) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000377) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00571 (175 reqs/sec) | Rendering: 0.00405 (70%) | DB: 0.00141 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:21:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000447) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000284) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00505 (198 reqs/sec) | Rendering: 0.00271 (53%) | DB: 0.00160 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:21:41) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00392 (254 reqs/sec) | Rendering: 0.00299 (76%) | DB: 0.00081 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:21:41) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000332) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00361 (277 reqs/sec) | DB: 0.00134 (37%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000314) SELECT * FROM users LIMIT 1 + User Load (0.000275) SELECT * FROM users LIMIT 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000275) SELECT * FROM users LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:21:41) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000123) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00352 (284 reqs/sec) | DB: 0.00361 (102%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000260) SELECT count(*) AS count_all FROM users  + User Load (0.000281) SELECT * FROM users LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:21:41) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000090)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00177 (566 reqs/sec) | DB: 0.00111 (63%) | 302 Found [http://test.host/users/1] + SQL (0.000223) SELECT count(*) AS count_all FROM users  + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:21:41) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00461 (216 reqs/sec) | Rendering: 0.00393 (85%) | DB: 0.00079 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:21:41) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00413 (242 reqs/sec) | Rendering: 0.00321 (77%) | DB: 0.00057 (13%) | 200 OK [http://test.host/users] + User Load (0.000298) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:21:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00296 (337 reqs/sec) | Rendering: 0.00196 (66%) | DB: 0.00059 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:21:41) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00265 (95%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000277) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:21:41) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00272 (367 reqs/sec) | DB: 0.00068 (24%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: FixtureClassNotFound, Fixtures, Fixture +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000617) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000264) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000289) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000231) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000089) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000265) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000599) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000237) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000281) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000098) UPDATE schema_info SET version = 3 + SQL (0.000202) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000266) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000336) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000266) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: FixtureClassNotFound, Fixtures, Fixture +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000603) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000293) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000261) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000107) UPDATE schema_info SET version = 3 + SQL (0.000194) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000333) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000111) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000253) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 3 + SQL (0.000208) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000219) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: FixtureClassNotFound, Fixtures, Fixture +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000284) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 1 + SQL (0.000180) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000240) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000604) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000261) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000292) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000234) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000238) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000215) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000299) SELECT * FROM posts LIMIT 1 + Post Load (0.000174) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000180) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000250) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + SQL (0.000231) SELECT count(*) AS count_all FROM posts  + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:41:15) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000175) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00545 (183 reqs/sec) | DB: 0.00519 (95%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000311) SELECT count(*) AS count_all FROM posts  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000169) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:41:15) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000120)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00267 (374 reqs/sec) | DB: 0.00162 (60%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000291) SELECT count(*) AS count_all FROM posts  + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:41:15) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00647 (154 reqs/sec) | Rendering: 0.00487 (75%) | DB: 0.00160 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:41:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000381) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00570 (175 reqs/sec) | Rendering: 0.00407 (71%) | DB: 0.00139 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000304) SELECT * FROM posts LIMIT 1 + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:41:15) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00432 (231 reqs/sec) | Rendering: 0.00246 (57%) | DB: 0.00138 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000285) SELECT * FROM posts LIMIT 1 + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:41:15) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00417 (239 reqs/sec) | Rendering: 0.00323 (77%) | DB: 0.00083 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:41:15) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000110) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00362 (276 reqs/sec) | DB: 0.00126 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000272) SELECT * FROM users LIMIT 1 + User Update (0.000326) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:41:15) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000125) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00356 (280 reqs/sec) | DB: 0.00370 (103%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000286) SELECT count(*) AS count_all FROM users  + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:41:15) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000088)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00171 (585 reqs/sec) | DB: 0.00107 (62%) | 302 Found [http://test.host/users/1] + SQL (0.000211) SELECT count(*) AS count_all FROM users  + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:41:15) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00460 (217 reqs/sec) | Rendering: 0.00392 (85%) | DB: 0.00077 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000286) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:41:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00395 (253 reqs/sec) | Rendering: 0.00301 (76%) | DB: 0.00058 (14%) | 200 OK [http://test.host/users] + User Load (0.000279) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:41:15) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000357) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00314 (318 reqs/sec) | Rendering: 0.00199 (63%) | DB: 0.00064 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:41:15) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00275 (364 reqs/sec) | Rendering: 0.00262 (95%) | DB: 0.00027 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:41:15) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000120) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00279 (358 reqs/sec) | DB: 0.00067 (24%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000597) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000257) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000289) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 1 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000235) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000247) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000263) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000298) SELECT * FROM posts LIMIT 1 + Post Load (0.000153) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000114) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000304) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000297) SELECT * FROM posts LIMIT 1 + SQL (0.000251) SELECT count(*) AS count_all FROM posts  + User Load (0.000253) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:42:42) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000177) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000110) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00557 (179 reqs/sec) | DB: 0.00530 (95%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000294) SELECT count(*) AS count_all FROM posts  + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000173) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:42:42) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00249 (401 reqs/sec) | DB: 0.00158 (63%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000225) SELECT count(*) AS count_all FROM posts  + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:42:42) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000302) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000355) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00681 (146 reqs/sec) | Rendering: 0.00495 (72%) | DB: 0.00176 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000524) SELECT * FROM posts LIMIT 1 + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:42:42) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000424) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00591 (169 reqs/sec) | Rendering: 0.00412 (69%) | DB: 0.00185 (31%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:42:42) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000316) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00430 (232 reqs/sec) | Rendering: 0.00246 (57%) | DB: 0.00132 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000297) SELECT * FROM posts LIMIT 1 + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:42:42) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00375 (266 reqs/sec) | Rendering: 0.00289 (77%) | DB: 0.00085 (22%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:42:42) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000250) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000119) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00363 (275 reqs/sec) | DB: 0.00133 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000155) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:42:42) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000124) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00329 (304 reqs/sec) | DB: 0.00348 (105%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000213) SELECT count(*) AS count_all FROM users  + User Load (0.000264) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:42:42) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000108)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00173 (578 reqs/sec) | DB: 0.00104 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000214) SELECT count(*) AS count_all FROM users  + User Load (0.000407) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:42:42) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00494 (202 reqs/sec) | Rendering: 0.00408 (82%) | DB: 0.00100 (20%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:42:42) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000262) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00388 (257 reqs/sec) | Rendering: 0.00300 (77%) | DB: 0.00053 (13%) | 200 OK [http://test.host/users] + User Load (0.000294) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:42:42) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00331 (302 reqs/sec) | Rendering: 0.00218 (65%) | DB: 0.00065 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:42:42) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00272 (368 reqs/sec) | Rendering: 0.00259 (95%) | DB: 0.00027 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:42:42) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000130) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00284 (352 reqs/sec) | DB: 0.00071 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000628) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000284) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000230) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000331) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000256) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 3 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000304) SELECT * FROM posts LIMIT 1 + Post Load (0.000150) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000236) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + SQL (0.000275) SELECT count(*) AS count_all FROM posts  + User Load (0.000302) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:43:32) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000109) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00545 (183 reqs/sec) | DB: 0.00521 (95%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000254) SELECT count(*) AS count_all FROM posts  + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000183) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:43:32) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00246 (407 reqs/sec) | DB: 0.00157 (63%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000196) SELECT count(*) AS count_all FROM posts  + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:43:32) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00645 (155 reqs/sec) | Rendering: 0.00478 (74%) | DB: 0.00155 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000226) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:43:32) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000428) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00587 (170 reqs/sec) | Rendering: 0.00416 (70%) | DB: 0.00144 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000397) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:43:32) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000270) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00472 (211 reqs/sec) | Rendering: 0.00249 (52%) | DB: 0.00157 (33%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:43:32) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00301 (76%) | DB: 0.00081 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:43:32) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000109) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00355 (281 reqs/sec) | DB: 0.00123 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Update (0.000146) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:43:32) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000120) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00333 (300 reqs/sec) | DB: 0.00343 (103%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000241) SELECT count(*) AS count_all FROM users  + User Load (0.000263) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:43:32) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000106)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00173 (579 reqs/sec) | DB: 0.00106 (61%) | 302 Found [http://test.host/users/1] + SQL (0.000201) SELECT count(*) AS count_all FROM users  + User Load (0.000243) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:43:32) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00462 (216 reqs/sec) | Rendering: 0.00392 (85%) | DB: 0.00074 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000296) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:43:32) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000292) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00406 (246 reqs/sec) | Rendering: 0.00310 (76%) | DB: 0.00059 (14%) | 200 OK [http://test.host/users] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:43:32) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00184 (65%) | DB: 0.00054 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:43:32) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00288 (347 reqs/sec) | Rendering: 0.00275 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:43:32) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000125) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00269 (371 reqs/sec) | DB: 0.00069 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000622) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000235) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000337) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000236) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000266) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + Post Load (0.000181) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + Post Load (0.000274) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000347) SELECT * FROM posts LIMIT 1 + SQL (0.000264) SELECT count(*) AS count_all FROM posts  + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:44:16) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000178) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000107) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00531 (188 reqs/sec) | DB: 0.00532 (100%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000304) SELECT count(*) AS count_all FROM posts  + Post Load (0.000321) SELECT * FROM posts LIMIT 1 + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000175) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:44:16) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000109)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00258 (388 reqs/sec) | DB: 0.00171 (66%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000215) SELECT count(*) AS count_all FROM posts  + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:44:16) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000275) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00711 (140 reqs/sec) | Rendering: 0.00536 (75%) | DB: 0.00162 (22%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:44:16) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000372) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00576 (173 reqs/sec) | Rendering: 0.00400 (69%) | DB: 0.00144 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:44:16) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000315) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00433 (231 reqs/sec) | Rendering: 0.00244 (56%) | DB: 0.00131 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000306) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:44:16) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00398 (251 reqs/sec) | Rendering: 0.00302 (75%) | DB: 0.00088 (22%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:44:16) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000251) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000116) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00368 (271 reqs/sec) | DB: 0.00129 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000285) SELECT * FROM users LIMIT 1 + User Update (0.000139) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:44:16) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000131) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00430 (232 reqs/sec) | DB: 0.00349 (81%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000287) SELECT count(*) AS count_all FROM users  + User Load (0.000243) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:44:16) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00172 (581 reqs/sec) | DB: 0.00108 (62%) | 302 Found [http://test.host/users/1] + SQL (0.000204) SELECT count(*) AS count_all FROM users  + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:44:16) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00451 (221 reqs/sec) | Rendering: 0.00384 (85%) | DB: 0.00074 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:44:16) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000266) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00379 (263 reqs/sec) | Rendering: 0.00293 (77%) | DB: 0.00053 (14%) | 200 OK [http://test.host/users] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:44:16) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00281 (356 reqs/sec) | Rendering: 0.00183 (65%) | DB: 0.00055 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:44:16) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00297 (337 reqs/sec) | Rendering: 0.00282 (95%) | DB: 0.00026 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000452) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:44:16) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000362) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000140) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00306 (327 reqs/sec) | DB: 0.00095 (31%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000611) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000290) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000216) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000227) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000236) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000268) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000153) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000153) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000603) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000470) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000398) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 1 + SQL (0.000208) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000256) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 2 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000251) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 3 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000217) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000385) CREATE TABLE schema_info (version integer) + SQL (0.000092) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000262) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000234) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 2 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000257) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000273) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000501) SELECT * FROM posts LIMIT 1 + Post Load (0.000199) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000137) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000157) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000287) SELECT * FROM posts LIMIT 1 + Post Load (0.000268) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + SQL (0.000238) SELECT count(*) AS count_all FROM posts  + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:45:06) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000417) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000215) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000127) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00785 (127 reqs/sec) | DB: 0.00595 (75%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000270) SELECT count(*) AS count_all FROM posts  + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000177) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:45:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000255) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00258 (387 reqs/sec) | DB: 0.00163 (63%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000228) SELECT count(*) AS count_all FROM posts  + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + User Load (0.000254) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:45:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000260) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00675 (148 reqs/sec) | Rendering: 0.00494 (73%) | DB: 0.00168 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:45:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000357) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00826 (121 reqs/sec) | Rendering: 0.00659 (79%) | DB: 0.00140 (16%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:45:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000256) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000571) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00462 (216 reqs/sec) | Rendering: 0.00249 (54%) | DB: 0.00164 (35%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000349) SELECT * FROM posts LIMIT 1 + User Load (0.000291) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:45:06) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00376 (266 reqs/sec) | Rendering: 0.00290 (77%) | DB: 0.00090 (24%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:45:06) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000261) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000136) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000116) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00399 (250 reqs/sec) | DB: 0.00134 (33%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Update (0.000164) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000288) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:45:06) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000124) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00354 (282 reqs/sec) | DB: 0.00348 (98%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000218) SELECT count(*) AS count_all FROM users  + User Load (0.000287) SELECT * FROM users LIMIT 1 + SQL (0.000214) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:45:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000131)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00217 (460 reqs/sec) | DB: 0.00119 (54%) | 302 Found [http://test.host/users/1] + SQL (0.000212) SELECT count(*) AS count_all FROM users  + User Load (0.000301) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:45:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00453 (220 reqs/sec) | Rendering: 0.00388 (85%) | DB: 0.00079 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:45:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000415) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00408 (244 reqs/sec) | Rendering: 0.00295 (72%) | DB: 0.00069 (16%) | 200 OK [http://test.host/users] + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:45:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00277 (360 reqs/sec) | Rendering: 0.00184 (66%) | DB: 0.00053 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:45:06) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00277 (360 reqs/sec) | Rendering: 0.00264 (95%) | DB: 0.00028 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:45:06) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000121) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00264 (378 reqs/sec) | DB: 0.00067 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000640) CREATE TABLE schema_info (version integer) + SQL (0.000098) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000265) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000290) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000237) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000236) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000212) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000341) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000262) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000264) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + Post Load (0.000164) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000134) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + Post Load (0.000254) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000231) SELECT count(*) AS count_all FROM posts  + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:47:03) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000360) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000173) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000117) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00559 (179 reqs/sec) | DB: 0.00527 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000264) SELECT count(*) AS count_all FROM posts  + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000173) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:47:03) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000266) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000131)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00294 (339 reqs/sec) | DB: 0.00165 (55%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000240) SELECT count(*) AS count_all FROM posts  + Post Load (0.000307) SELECT * FROM posts LIMIT 1 + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:47:03) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000369) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00682 (146 reqs/sec) | Rendering: 0.00495 (72%) | DB: 0.00176 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:47:03) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000359) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00587 (170 reqs/sec) | Rendering: 0.00416 (70%) | DB: 0.00148 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:47:03) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000351) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00467 (213 reqs/sec) | Rendering: 0.00268 (57%) | DB: 0.00144 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:47:03) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00396 (252 reqs/sec) | Rendering: 0.00306 (77%) | DB: 0.00078 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:47:03) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000266) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000156) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00409 (244 reqs/sec) | DB: 0.00131 (32%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Update (0.000155) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000292) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Load (0.000281) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:47:03) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000124) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00333 (300 reqs/sec) | DB: 0.00357 (107%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000212) SELECT count(*) AS count_all FROM users  + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:47:03) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000110)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00170 (586 reqs/sec) | DB: 0.00101 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000197) SELECT count(*) AS count_all FROM users  + User Load (0.000297) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:47:03) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00475 (210 reqs/sec) | Rendering: 0.00403 (84%) | DB: 0.00081 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000287) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:47:03) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000260) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00297 (77%) | DB: 0.00055 (14%) | 200 OK [http://test.host/users] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:47:03) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00186 (65%) | DB: 0.00055 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000286) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:47:03) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00303 (329 reqs/sec) | Rendering: 0.00290 (95%) | DB: 0.00029 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:47:03) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000119) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00261 (383 reqs/sec) | DB: 0.00068 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000614) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000258) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000104) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000216) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000238) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000235) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000158) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000319) SELECT * FROM posts LIMIT 1 + Post Load (0.000315) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + SQL (0.000200) SELECT count(*) AS count_all FROM posts  + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 15:50:26) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000180) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000116) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00559 (179 reqs/sec) | DB: 0.00527 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000283) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000181) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 15:50:26) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000255) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000091)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00254 (393 reqs/sec) | DB: 0.00159 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000220) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000364) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00574 (174 reqs/sec) | Rendering: 0.00385 (67%) | DB: 0.00157 (27%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00526 (190 reqs/sec) | Rendering: 0.00366 (69%) | DB: 0.00131 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000310) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00546 (183 reqs/sec) | Rendering: 0.00389 (71%) | DB: 0.00135 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00335 (298 reqs/sec) | Rendering: 0.00158 (47%) | DB: 0.00127 (38%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00304 (77%) | DB: 0.00082 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 15:50:26) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000257) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000115) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00364 (274 reqs/sec) | DB: 0.00127 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000164) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000276) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000283) SELECT * FROM users LIMIT 1 + SQL (0.000219) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 15:50:26) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000128) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00359 (278 reqs/sec) | DB: 0.00361 (100%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000229) SELECT count(*) AS count_all FROM users  + User Load (0.000243) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 15:50:26) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000106)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00179 (558 reqs/sec) | DB: 0.00102 (57%) | 302 Found [http://test.host/users/1] + SQL (0.000203) SELECT count(*) AS count_all FROM users  + User Load (0.000313) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00424 (235 reqs/sec) | Rendering: 0.00321 (75%) | DB: 0.00084 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00377 (265 reqs/sec) | Rendering: 0.00309 (82%) | DB: 0.00055 (14%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00296 (76%) | DB: 0.00054 (14%) | 200 OK [http://test.host/users] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00204 (489 reqs/sec) | Rendering: 0.00108 (52%) | DB: 0.00055 (27%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 15:50:26) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.08494 (11 reqs/sec) | Rendering: 0.08481 (99%) | DB: 0.00026 (0%) | 200 OK [http://test.host/users/new] + User Load (0.000299) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 15:50:27) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000128) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00272 (367 reqs/sec) | DB: 0.00074 (27%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000608) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000317) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000308) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 1 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000233) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000342) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000242) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000326) SELECT * FROM posts LIMIT 1 + Post Load (0.000163) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000288) SELECT * FROM posts LIMIT 1 + Post Load (0.000293) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM posts  + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:00:43) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000193) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000108) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00563 (177 reqs/sec) | DB: 0.00532 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000235) SELECT count(*) AS count_all FROM posts  + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000169) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:00:43) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000248) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00249 (401 reqs/sec) | DB: 0.00152 (60%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000205) SELECT count(*) AS count_all FROM posts  + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:00:43) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00258 (388 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00126 (49%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000346) SELECT * FROM posts LIMIT 1 + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:00:43) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000342) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000318) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000407) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00818 (122 reqs/sec) | Rendering: 0.00601 (73%) | DB: 0.00173 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:00:43) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000365) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00575 (173 reqs/sec) | Rendering: 0.00407 (70%) | DB: 0.00143 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:00:43) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00440 (227 reqs/sec) | Rendering: 0.00251 (57%) | DB: 0.00137 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:00:43) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00380 (262 reqs/sec) | Rendering: 0.00293 (77%) | DB: 0.00079 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:00:43) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000305) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000184) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000179) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00569 (175 reqs/sec) | DB: 0.00152 (26%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000336) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Update (0.000145) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Load (0.000289) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:00:43) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000161) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00367 (272 reqs/sec) | DB: 0.00359 (97%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000250) SELECT count(*) AS count_all FROM users  + User Load (0.000269) SELECT * FROM users LIMIT 1 + SQL (0.000190) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:00:43) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000114)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00192 (520 reqs/sec) | DB: 0.00112 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000226) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:00:43) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00200 (500 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00078 (39%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:00:43) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00489 (204 reqs/sec) | Rendering: 0.00419 (85%) | DB: 0.00055 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000326) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:00:44) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00424 (235 reqs/sec) | Rendering: 0.00329 (77%) | DB: 0.00062 (14%) | 200 OK [http://test.host/users] + User Load (0.000308) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:00:44) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00293 (341 reqs/sec) | Rendering: 0.00185 (63%) | DB: 0.00061 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000302) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:00:44) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00289 (346 reqs/sec) | Rendering: 0.00272 (94%) | DB: 0.00030 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:00:44) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00254 (394 reqs/sec) | DB: 0.00067 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000619) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000290) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000238) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000315) SELECT * FROM posts LIMIT 1 + Post Load (0.000175) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000136) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000345) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM posts  + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:01:41) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000150) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000112) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00544 (183 reqs/sec) | DB: 0.00525 (96%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000305) SELECT count(*) AS count_all FROM posts  + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000225) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:01:41) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00251 (398 reqs/sec) | DB: 0.00166 (66%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000214) SELECT count(*) AS count_all FROM posts  + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00274 (365 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00129 (47%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000262) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00656 (152 reqs/sec) | Rendering: 0.00489 (74%) | DB: 0.00135 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000327) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00555 (180 reqs/sec) | Rendering: 0.00396 (71%) | DB: 0.00135 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00427 (234 reqs/sec) | Rendering: 0.00242 (56%) | DB: 0.00132 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00372 (268 reqs/sec) | Rendering: 0.00286 (76%) | DB: 0.00075 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:01:41) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00359 (278 reqs/sec) | DB: 0.00128 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000144) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000287) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000280) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000172) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:01:41) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000129) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00338 (295 reqs/sec) | DB: 0.00351 (103%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000274) SELECT count(*) AS count_all FROM users  + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:01:41) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000090)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00175 (572 reqs/sec) | DB: 0.00108 (61%) | 302 Found [http://test.host/users/1] + SQL (0.000201) SELECT count(*) AS count_all FROM users  + User Load (0.000245) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00183 (547 reqs/sec) | Rendering: 0.00007 (4%) | DB: 0.00073 (39%) | 200 OK [http://test.host/users/1] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00485 (206 reqs/sec) | Rendering: 0.00416 (85%) | DB: 0.00054 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000263) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00411 (243 reqs/sec) | Rendering: 0.00314 (76%) | DB: 0.00053 (12%) | 200 OK [http://test.host/users] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00191 (67%) | DB: 0.00054 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000379) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:01:41) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.08443 (11 reqs/sec) | Rendering: 0.08429 (99%) | DB: 0.00038 (0%) | 200 OK [http://test.host/users/new] + User Load (0.000295) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:01:41) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000129) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00268 (373 reqs/sec) | DB: 0.00072 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] + Post Load (0.000350) SELECT * FROM posts WHERE (posts.user_id = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000618) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000264) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000305) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000221) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000262) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 3 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000161) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000284) SELECT * FROM posts LIMIT 1 + Post Load (0.000268) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000203) SELECT count(*) AS count_all FROM posts  + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:02:09) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000174) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000109) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00584 (171 reqs/sec) | DB: 0.00524 (89%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000235) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000167) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:02:09) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00247 (405 reqs/sec) | DB: 0.00152 (61%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000216) SELECT count(*) AS count_all FROM posts  + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00254 (394 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00123 (48%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00639 (156 reqs/sec) | Rendering: 0.00477 (74%) | DB: 0.00134 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000350) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00558 (179 reqs/sec) | Rendering: 0.00391 (70%) | DB: 0.00141 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000273) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00442 (226 reqs/sec) | Rendering: 0.00246 (55%) | DB: 0.00138 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00391 (255 reqs/sec) | Rendering: 0.00306 (78%) | DB: 0.00076 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:02:09) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00369 (270 reqs/sec) | DB: 0.00129 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000332) SELECT * FROM users LIMIT 1 + User Update (0.000125) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000321) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:02:09) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000180) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00387 (258 reqs/sec) | DB: 0.00366 (94%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000241) SELECT count(*) AS count_all FROM users  + User Load (0.000260) SELECT * FROM users LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:02:09) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000125)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00189 (529 reqs/sec) | DB: 0.00110 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000218) SELECT count(*) AS count_all FROM users  + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000354) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00215 (465 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00084 (39%) | 200 OK [http://test.host/users/1] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00484 (206 reqs/sec) | Rendering: 0.00412 (85%) | DB: 0.00056 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000287) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000341) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00409 (244 reqs/sec) | Rendering: 0.00302 (73%) | DB: 0.00063 (15%) | 200 OK [http://test.host/users] + User Load (0.000285) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00281 (355 reqs/sec) | Rendering: 0.00181 (64%) | DB: 0.00059 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000312) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:02:09) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00289 (346 reqs/sec) | Rendering: 0.00275 (95%) | DB: 0.00031 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:02:09) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000127) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00257 (388 reqs/sec) | DB: 0.00066 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000617) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000255) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000287) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000238) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000271) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000227) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000319) SELECT * FROM posts LIMIT 1 + Post Load (0.000168) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + SQL (0.000203) SELECT count(*) AS count_all FROM posts  + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:02:38) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000168) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00572 (174 reqs/sec) | DB: 0.00525 (91%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000244) SELECT count(*) AS count_all FROM posts  + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000168) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:02:38) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000270) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000097)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00278 (359 reqs/sec) | DB: 0.00155 (55%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000230) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000270) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00271 (368 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00125 (46%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00635 (157 reqs/sec) | Rendering: 0.00474 (74%) | DB: 0.00132 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000379) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00573 (174 reqs/sec) | Rendering: 0.00409 (71%) | DB: 0.00140 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00436 (229 reqs/sec) | Rendering: 0.00245 (56%) | DB: 0.00141 (32%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00408 (245 reqs/sec) | Rendering: 0.00300 (73%) | DB: 0.00084 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:02:38) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000118) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00366 (272 reqs/sec) | DB: 0.00130 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000297) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000108) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:02:38) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000159) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00446 (224 reqs/sec) | DB: 0.00348 (78%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000262) SELECT count(*) AS count_all FROM users  + User Load (0.000258) SELECT * FROM users LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:02:38) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000124)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00189 (529 reqs/sec) | DB: 0.00112 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000228) SELECT count(*) AS count_all FROM users  + User Load (0.000315) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000570) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00387 (258 reqs/sec) | Rendering: 0.00009 (2%) | DB: 0.00111 (28%) | 200 OK [http://test.host/users/1] + User Load (0.000405) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000503) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00541 (184 reqs/sec) | Rendering: 0.00434 (80%) | DB: 0.00091 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00379 (263 reqs/sec) | Rendering: 0.00291 (76%) | DB: 0.00055 (14%) | 200 OK [http://test.host/users] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00298 (335 reqs/sec) | Rendering: 0.00203 (68%) | DB: 0.00054 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:02:38) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00271 (369 reqs/sec) | Rendering: 0.00257 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:02:38) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000123) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00267 (374 reqs/sec) | DB: 0.00071 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000641) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000272) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000293) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000234) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000240) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000263) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000208) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + Post Load (0.000146) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + Post Load (0.000271) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + SQL (0.000192) SELECT count(*) AS count_all FROM posts  + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:05:03) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000155) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000105) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00546 (183 reqs/sec) | DB: 0.00515 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000236) SELECT count(*) AS count_all FROM posts  + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000171) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:05:03) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000089)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00248 (402 reqs/sec) | DB: 0.00153 (61%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000213) SELECT count(*) AS count_all FROM posts  + Post Load (0.000293) SELECT * FROM posts LIMIT 1 + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:05:03) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000289) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00136 (47%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:05:03) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00638 (156 reqs/sec) | Rendering: 0.00476 (74%) | DB: 0.00134 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000319) SELECT * FROM posts LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:05:03) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000354) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00606 (165 reqs/sec) | Rendering: 0.00422 (69%) | DB: 0.00157 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:05:04) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00428 (233 reqs/sec) | Rendering: 0.00242 (56%) | DB: 0.00131 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:05:04) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00390 (256 reqs/sec) | Rendering: 0.00294 (75%) | DB: 0.00080 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:05:04) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000336) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000248) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00366 (272 reqs/sec) | DB: 0.00142 (38%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Update (0.000131) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000294) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000290) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:05:04) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000171) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00389 (257 reqs/sec) | DB: 0.00360 (92%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000244) SELECT count(*) AS count_all FROM users  + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:05:04) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000128)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00191 (523 reqs/sec) | DB: 0.00108 (56%) | 302 Found [http://test.host/users/1] + SQL (0.000227) SELECT count(*) AS count_all FROM users  + User Load (0.000244) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:05:04) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00186 (538 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00078 (42%) | 200 OK [http://test.host/users/1] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:05:04) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000373) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00529 (189 reqs/sec) | Rendering: 0.00445 (84%) | DB: 0.00063 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:05:04) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000256) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.08619 (11 reqs/sec) | Rendering: 0.00298 (3%) | DB: 0.00052 (0%) | 200 OK [http://test.host/users] + User Load (0.000309) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:05:04) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000355) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00311 (321 reqs/sec) | Rendering: 0.00193 (62%) | DB: 0.00066 (21%) | 200 OK [http://test.host/users/1] + User Load (0.000279) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:05:04) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00270 (370 reqs/sec) | Rendering: 0.00257 (95%) | DB: 0.00028 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000296) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:05:04) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000153) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00291 (343 reqs/sec) | DB: 0.00078 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000620) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000257) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000290) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000233) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000098) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000329) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000291) SELECT * FROM posts LIMIT 1 + Post Load (0.000215) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000266) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + SQL (0.000220) SELECT count(*) AS count_all FROM posts  + User Load (0.000296) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:05:20) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000120) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00545 (183 reqs/sec) | DB: 0.00531 (97%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000242) SELECT count(*) AS count_all FROM posts  + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000171) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:05:20) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000089)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00253 (394 reqs/sec) | DB: 0.00157 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000230) SELECT count(*) AS count_all FROM posts  + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:05:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00300 (333 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00128 (42%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000313) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:05:20) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000391) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00712 (140 reqs/sec) | Rendering: 0.00541 (75%) | DB: 0.00147 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:05:20) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000467) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000399) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00746 (133 reqs/sec) | Rendering: 0.00556 (74%) | DB: 0.00165 (22%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:05:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00432 (231 reqs/sec) | Rendering: 0.00248 (57%) | DB: 0.00131 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:05:20) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00399 (250 reqs/sec) | Rendering: 0.00308 (77%) | DB: 0.00078 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + User Load (0.000354) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:05:20) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000373) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000322) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00400 (250 reqs/sec) | DB: 0.00158 (39%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000293) SELECT * FROM users LIMIT 1 + User Update (0.000150) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000305) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:05:20) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000172) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00384 (260 reqs/sec) | DB: 0.00366 (95%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000254) SELECT count(*) AS count_all FROM users  + User Load (0.000267) SELECT * FROM users LIMIT 1 + SQL (0.000190) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:05:20) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000135)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00251 (399 reqs/sec) | DB: 0.00118 (47%) | 302 Found [http://test.host/users/1] + SQL (0.001253) SELECT count(*) AS count_all FROM users  + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:05:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00185 (541 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00182 (98%) | 200 OK [http://test.host/users/1] + User Load (0.000278) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:05:20) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00479 (208 reqs/sec) | Rendering: 0.00407 (84%) | DB: 0.00058 (12%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000293) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:05:20) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000343) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.08770 (11 reqs/sec) | Rendering: 0.00331 (3%) | DB: 0.00064 (0%) | 200 OK [http://test.host/users] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:05:21) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00186 (65%) | DB: 0.00056 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000319) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:05:21) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00269 (94%) | DB: 0.00032 (11%) | 200 OK [http://test.host/users/new] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:05:21) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000332) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000134) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00303 (329 reqs/sec) | DB: 0.00074 (24%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000610) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000255) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000285) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000221) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000243) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000212) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000090) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000272) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000274) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000334) SELECT * FROM posts LIMIT 1 + Post Load (0.000152) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000151) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + Post Load (0.000282) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000316) SELECT * FROM posts LIMIT 1 + SQL (0.000258) SELECT count(*) AS count_all FROM posts  + User Load (0.000325) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:05:38) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000179) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000157) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000397) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00658 (152 reqs/sec) | DB: 0.00571 (86%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000332) SELECT count(*) AS count_all FROM posts  + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.004579) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:05:38) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000499) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000416) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000118)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00401 (249 reqs/sec) | DB: 0.00645 (160%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000411) SELECT count(*) AS count_all FROM posts  + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000252) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00261 (382 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00144 (55%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00694 (144 reqs/sec) | Rendering: 0.00528 (76%) | DB: 0.00138 (19%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000445) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00604 (165 reqs/sec) | Rendering: 0.00429 (70%) | DB: 0.00151 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000316) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00434 (230 reqs/sec) | Rendering: 0.00247 (56%) | DB: 0.00135 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00371 (269 reqs/sec) | Rendering: 0.00286 (77%) | DB: 0.00076 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000439) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:05:39) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000349) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000252) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000132) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000115) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00379 (263 reqs/sec) | DB: 0.00155 (40%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Update (0.000163) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000346) SELECT * FROM users LIMIT 1 + User Update (0.000132) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000276) SELECT * FROM users LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:05:39) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000153) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00383 (261 reqs/sec) | DB: 0.00376 (98%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000278) SELECT count(*) AS count_all FROM users  + User Load (0.000279) SELECT * FROM users LIMIT 1 + SQL (0.000209) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:05:39) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000132)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00221 (453 reqs/sec) | DB: 0.00123 (55%) | 302 Found [http://test.host/users/1] + SQL (0.000302) SELECT count(*) AS count_all FROM users  + User Load (0.000278) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00185 (540 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00087 (47%) | 200 OK [http://test.host/users/1] + User Load (0.000342) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00490 (204 reqs/sec) | Rendering: 0.00412 (84%) | DB: 0.00067 (13%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.08980 (11 reqs/sec) | Rendering: 0.00304 (3%) | DB: 0.00057 (0%) | 200 OK [http://test.host/users] + User Load (0.000340) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00303 (330 reqs/sec) | Rendering: 0.00198 (65%) | DB: 0.00066 (21%) | 200 OK [http://test.host/users/1] + User Load (0.000293) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:05:39) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00274 (365 reqs/sec) | Rendering: 0.00260 (95%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:05:39) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000349) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000151) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00301 (332 reqs/sec) | DB: 0.00077 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000624) CREATE TABLE schema_info (version integer) + SQL (0.000097) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000287) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000238) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000338) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000242) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000221) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000209) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000226) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000291) SELECT * FROM posts LIMIT 1 + Post Load (0.000192) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000338) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM posts  + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:06:49) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000165) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000124) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000370) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00575 (173 reqs/sec) | DB: 0.00540 (93%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000305) SELECT count(*) AS count_all FROM posts  + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000171) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:06:49) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00247 (404 reqs/sec) | DB: 0.00159 (64%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000243) SELECT count(*) AS count_all FROM posts  + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00271 (369 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00132 (48%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000349) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00668 (149 reqs/sec) | Rendering: 0.00498 (74%) | DB: 0.00140 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000355) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00563 (177 reqs/sec) | Rendering: 0.00397 (70%) | DB: 0.00138 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00434 (230 reqs/sec) | Rendering: 0.00249 (57%) | DB: 0.00132 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000358) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00409 (244 reqs/sec) | Rendering: 0.00305 (74%) | DB: 0.00085 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:06:49) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00360 (277 reqs/sec) | DB: 0.00128 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Update (0.000152) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000448) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:06:49) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000182) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00384 (260 reqs/sec) | DB: 0.00373 (96%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000242) SELECT count(*) AS count_all FROM users  + User Load (0.000261) SELECT * FROM users LIMIT 1 + SQL (0.000212) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:06:49) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000119)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00199 (501 reqs/sec) | DB: 0.00116 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000224) SELECT count(*) AS count_all FROM users  + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000342) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00204 (489 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00083 (40%) | 200 OK [http://test.host/users/1] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00503 (198 reqs/sec) | Rendering: 0.00426 (84%) | DB: 0.00055 (10%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000274) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000265) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.08561 (11 reqs/sec) | Rendering: 0.00303 (3%) | DB: 0.00054 (0%) | 200 OK [http://test.host/users] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00296 (337 reqs/sec) | Rendering: 0.00198 (66%) | DB: 0.00058 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:06:49) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00291 (343 reqs/sec) | Rendering: 0.00270 (92%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:06:49) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000127) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00298 (335 reqs/sec) | DB: 0.00074 (24%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000233) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000262) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000309) SELECT * FROM posts LIMIT 1 + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + Post Load (0.000308) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + SQL (0.000213) SELECT count(*) AS count_all FROM posts  + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:07:02) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000112) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00535 (186 reqs/sec) | DB: 0.00527 (98%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000256) SELECT count(*) AS count_all FROM posts  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000169) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:07:02) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00248 (403 reqs/sec) | DB: 0.00154 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000208) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000251) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00253 (395 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00120 (47%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00653 (153 reqs/sec) | Rendering: 0.00480 (73%) | DB: 0.00141 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000372) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000357) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00594 (168 reqs/sec) | Rendering: 0.00420 (70%) | DB: 0.00150 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000280) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00501 (199 reqs/sec) | Rendering: 0.00294 (58%) | DB: 0.00142 (28%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00289 (77%) | DB: 0.00074 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:07:02) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000248) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00361 (277 reqs/sec) | DB: 0.00127 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000297) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:07:02) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000151) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00359 (278 reqs/sec) | DB: 0.00348 (97%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000230) SELECT count(*) AS count_all FROM users  + User Load (0.000271) SELECT * FROM users LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:07:02) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000116)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00191 (522 reqs/sec) | DB: 0.00110 (57%) | 302 Found [http://test.host/users/1] + SQL (0.000217) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00216 (462 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00079 (36%) | 200 OK [http://test.host/users/1] + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000333) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00510 (196 reqs/sec) | Rendering: 0.00430 (84%) | DB: 0.00059 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000263) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.08542 (11 reqs/sec) | Rendering: 0.00304 (3%) | DB: 0.00052 (0%) | 200 OK [http://test.host/users] + User Load (0.000303) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00288 (347 reqs/sec) | Rendering: 0.00189 (65%) | DB: 0.00060 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000286) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:07:02) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00305 (327 reqs/sec) | Rendering: 0.00291 (95%) | DB: 0.00029 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:07:02) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000120) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00262 (381 reqs/sec) | DB: 0.00066 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000374) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000351) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 1 + SQL (0.000201) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000285) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000187) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000251) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000242) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000134) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + Post Load (0.000345) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + SQL (0.000206) SELECT count(*) AS count_all FROM posts  + User Load (0.000323) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:07:37) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000163) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000112) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00574 (174 reqs/sec) | DB: 0.00541 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000188) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:07:37) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00248 (403 reqs/sec) | DB: 0.00157 (63%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000198) SELECT count(*) AS count_all FROM posts  + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000232) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00259 (386 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00116 (45%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000472) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00705 (141 reqs/sec) | Rendering: 0.00511 (72%) | DB: 0.00155 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000287) SELECT * FROM posts LIMIT 1 + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000366) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00569 (175 reqs/sec) | Rendering: 0.00400 (70%) | DB: 0.00148 (26%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000283) SELECT * FROM posts LIMIT 1 + User Load (0.000387) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000307) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00534 (187 reqs/sec) | Rendering: 0.00309 (57%) | DB: 0.00166 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + User Load (0.000299) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000388) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00437 (228 reqs/sec) | Rendering: 0.00322 (73%) | DB: 0.00096 (22%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:07:37) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000376) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000372) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000161) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000131) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00449 (222 reqs/sec) | DB: 0.00153 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000321) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000422) SELECT * FROM users LIMIT 1 + User Update (0.000203) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000172) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:07:37) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000157) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00354 (282 reqs/sec) | DB: 0.00380 (107%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000258) SELECT count(*) AS count_all FROM users  + User Load (0.000318) SELECT * FROM users LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:07:37) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000134)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00205 (488 reqs/sec) | DB: 0.00123 (60%) | 302 Found [http://test.host/users/1] + SQL (0.000329) SELECT count(*) AS count_all FROM users  + User Load (0.000306) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000366) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00221 (452 reqs/sec) | Rendering: 0.00010 (4%) | DB: 0.00100 (45%) | 200 OK [http://test.host/users/1] + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00472 (211 reqs/sec) | Rendering: 0.00403 (85%) | DB: 0.00054 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000335) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.10364 (9 reqs/sec) | Rendering: 0.00301 (2%) | DB: 0.00060 (0%) | 200 OK [http://test.host/users] + User Load (0.000279) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00290 (344 reqs/sec) | Rendering: 0.00188 (64%) | DB: 0.00058 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:07:37) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00270 (370 reqs/sec) | Rendering: 0.00256 (94%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000287) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:07:37) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000122) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00266 (376 reqs/sec) | DB: 0.00073 (27%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000625) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000216) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 2 + SQL (0.000177) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000253) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000327) CREATE TABLE schema_info (version integer) + SQL (0.000091) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000208) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000327) SELECT * FROM posts LIMIT 1 + Post Load (0.000157) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000131) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + SQL (0.000204) SELECT count(*) AS count_all FROM posts  + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:07:50) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000158) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000105) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00563 (177 reqs/sec) | DB: 0.00524 (93%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000244) SELECT count(*) AS count_all FROM posts  + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000168) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:07:50) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000340) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000258) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00274 (364 reqs/sec) | DB: 0.00163 (59%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:07:50) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00251 (398 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00123 (49%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:07:50) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000250) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00652 (153 reqs/sec) | Rendering: 0.00489 (75%) | DB: 0.00136 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:07:50) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000349) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00573 (174 reqs/sec) | Rendering: 0.00408 (71%) | DB: 0.00143 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000291) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:07:50) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00433 (231 reqs/sec) | Rendering: 0.00246 (56%) | DB: 0.00135 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000311) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:07:50) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00396 (252 reqs/sec) | Rendering: 0.00297 (75%) | DB: 0.00088 (22%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:07:50) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000150) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00387 (258 reqs/sec) | DB: 0.00130 (33%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000158) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:07:51) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000149) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00368 (271 reqs/sec) | DB: 0.00360 (97%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000272) SELECT count(*) AS count_all FROM users  + User Load (0.000271) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:07:51) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000116)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00189 (527 reqs/sec) | DB: 0.00113 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000207) SELECT count(*) AS count_all FROM users  + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:07:51) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000340) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00203 (492 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00082 (40%) | 200 OK [http://test.host/users/1] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:07:51) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00500 (199 reqs/sec) | Rendering: 0.00429 (85%) | DB: 0.00056 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000319) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:07:51) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00397 (251 reqs/sec) | Rendering: 0.00305 (76%) | DB: 0.00061 (15%) | 200 OK [http://test.host/users] + User Load (0.000278) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:07:51) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00285 (350 reqs/sec) | Rendering: 0.00187 (65%) | DB: 0.00056 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000309) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:07:51) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00269 (372 reqs/sec) | Rendering: 0.00256 (95%) | DB: 0.00031 (11%) | 200 OK [http://test.host/users/new] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:07:51) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000314) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000124) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00261 (382 reqs/sec) | DB: 0.00072 (27%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000608) CREATE TABLE schema_info (version integer) + SQL (0.000092) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000255) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000289) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000222) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000235) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000083) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000221) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000291) SELECT * FROM posts LIMIT 1 + Post Load (0.000187) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000258) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000284) SELECT * FROM posts LIMIT 1 + SQL (0.000267) SELECT count(*) AS count_all FROM posts  + User Load (0.000311) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:08:01) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000153) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000113) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00539 (185 reqs/sec) | DB: 0.00533 (98%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000231) SELECT count(*) AS count_all FROM posts  + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000168) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:08:01) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000255) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00249 (401 reqs/sec) | DB: 0.00156 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:08:01) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000417) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00297 (337 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00141 (47%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:08:01) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000250) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000420) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00683 (146 reqs/sec) | Rendering: 0.00506 (74%) | DB: 0.00148 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:08:01) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000412) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00580 (172 reqs/sec) | Rendering: 0.00407 (70%) | DB: 0.00149 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000327) SELECT * FROM posts LIMIT 1 + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:08:01) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000260) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00431 (232 reqs/sec) | Rendering: 0.00245 (56%) | DB: 0.00140 (32%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:08:01) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00395 (253 reqs/sec) | Rendering: 0.00306 (77%) | DB: 0.00081 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:08:01) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000365) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000250) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00386 (258 reqs/sec) | DB: 0.00137 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:08:01) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000152) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00356 (281 reqs/sec) | DB: 0.00343 (96%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000231) SELECT count(*) AS count_all FROM users  + User Load (0.000261) SELECT * FROM users LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:08:01) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000123)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00187 (535 reqs/sec) | DB: 0.00108 (57%) | 302 Found [http://test.host/users/1] + SQL (0.000214) SELECT count(*) AS count_all FROM users  + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:08:01) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00204 (490 reqs/sec) | Rendering: 0.00009 (4%) | DB: 0.00076 (37%) | 200 OK [http://test.host/users/1] + User Load (0.000284) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:08:01) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00478 (209 reqs/sec) | Rendering: 0.00409 (85%) | DB: 0.00058 (12%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:08:01) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000271) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.08605 (11 reqs/sec) | Rendering: 0.00311 (3%) | DB: 0.00055 (0%) | 200 OK [http://test.host/users] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:08:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00185 (65%) | DB: 0.00056 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:08:02) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00269 (372 reqs/sec) | Rendering: 0.00255 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:08:02) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000122) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00254 (394 reqs/sec) | DB: 0.00066 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000609) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000216) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000237) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000264) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000208) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000286) SELECT * FROM posts LIMIT 1 + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000252) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + SQL (0.000189) SELECT count(*) AS count_all FROM posts  + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:08:13) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000360) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000150) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000103) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00546 (182 reqs/sec) | DB: 0.00515 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000244) SELECT count(*) AS count_all FROM posts  + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000167) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:08:13) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000346) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000086)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00264 (378 reqs/sec) | DB: 0.00158 (59%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000212) SELECT count(*) AS count_all FROM posts  + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000283) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00273 (365 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00135 (49%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000861) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00747 (133 reqs/sec) | Rendering: 0.00530 (70%) | DB: 0.00194 (26%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000315) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000314) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000351) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00563 (177 reqs/sec) | Rendering: 0.00392 (69%) | DB: 0.00150 (26%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + User Load (0.000386) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00440 (227 reqs/sec) | Rendering: 0.00243 (55%) | DB: 0.00151 (34%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00387 (258 reqs/sec) | Rendering: 0.00300 (77%) | DB: 0.00076 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:08:13) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000110) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00368 (271 reqs/sec) | DB: 0.00131 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000108) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + SQL (0.000182) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:08:13) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000172) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00383 (260 reqs/sec) | DB: 0.00348 (90%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000234) SELECT count(*) AS count_all FROM users  + User Load (0.000295) SELECT * FROM users LIMIT 1 + SQL (0.000192) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:08:13) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000126)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00188 (531 reqs/sec) | DB: 0.00113 (60%) | 302 Found [http://test.host/users/1] + SQL (0.000211) SELECT count(*) AS count_all FROM users  + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00191 (523 reqs/sec) | Rendering: 0.00009 (4%) | DB: 0.00075 (39%) | 200 OK [http://test.host/users/1] + User Load (0.000299) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00508 (196 reqs/sec) | Rendering: 0.00436 (85%) | DB: 0.00060 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.08583 (11 reqs/sec) | Rendering: 0.00302 (3%) | DB: 0.00054 (0%) | 200 OK [http://test.host/users] + User Load (0.000316) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000355) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00309 (323 reqs/sec) | Rendering: 0.00191 (61%) | DB: 0.00067 (21%) | 200 OK [http://test.host/users/1] + User Load (0.000293) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:08:13) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00273 (365 reqs/sec) | Rendering: 0.00260 (95%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000306) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:08:13) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000172) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00288 (346 reqs/sec) | DB: 0.00078 (27%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000589) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000223) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000218) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + Post Load (0.000284) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + SQL (0.000195) SELECT count(*) AS count_all FROM posts  + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:10:29) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000162) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000109) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00550 (181 reqs/sec) | DB: 0.00517 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000243) SELECT count(*) AS count_all FROM posts  + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000367) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000198) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:10:29) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000109)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00248 (402 reqs/sec) | DB: 0.00168 (67%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000205) SELECT count(*) AS count_all FROM posts  + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00282 (355 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00123 (43%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000493) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000488) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.28073 (3 reqs/sec) | Rendering: 0.00640 (2%) | DB: 0.00180 (0%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000285) SELECT * FROM posts LIMIT 1 + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00279 (357 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00109 (38%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000396) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00474 (211 reqs/sec) | Rendering: 0.00276 (58%) | DB: 0.00144 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00438 (228 reqs/sec) | Rendering: 0.00344 (78%) | DB: 0.00083 (18%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:10:29) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000255) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000133) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00381 (262 reqs/sec) | DB: 0.00142 (37%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000289) SELECT * FROM users LIMIT 1 + User Update (0.000158) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000291) SELECT * FROM users LIMIT 1 + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000120) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + SQL (0.000182) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:10:29) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000147) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00345 (290 reqs/sec) | DB: 0.00363 (105%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000217) SELECT count(*) AS count_all FROM users  + User Load (0.000324) SELECT * FROM users LIMIT 1 + SQL (0.000254) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:10:29) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000381) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000129)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00219 (455 reqs/sec) | DB: 0.00130 (59%) | 302 Found [http://test.host/users/1] + SQL (0.000216) SELECT count(*) AS count_all FROM users  + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00181 (552 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00076 (41%) | 200 OK [http://test.host/users/1] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000373) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00531 (188 reqs/sec) | Rendering: 0.00445 (83%) | DB: 0.00065 (12%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000288) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000324) SELECT * FROM users  +Completed in 0.00258 (387 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00061 (23%) | 200 OK [http://test.host/users] + User Load (0.000278) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00285 (350 reqs/sec) | Rendering: 0.00187 (65%) | DB: 0.00057 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000297) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:10:29) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00290 (345 reqs/sec) | Rendering: 0.00275 (94%) | DB: 0.00030 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:10:29) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000130) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00266 (376 reqs/sec) | DB: 0.00071 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000599) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000256) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000281) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000230) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000212) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000221) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000137) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000209) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000258) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM posts  + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:10:48) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000151) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000107) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00535 (186 reqs/sec) | DB: 0.00512 (95%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000227) SELECT count(*) AS count_all FROM posts  + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000168) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:10:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00261 (382 reqs/sec) | DB: 0.00152 (58%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000207) SELECT count(*) AS count_all FROM posts  + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00261 (382 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00125 (47%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000444) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000286) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000396) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00723 (138 reqs/sec) | Rendering: 0.00514 (71%) | DB: 0.00164 (22%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000300) SELECT * FROM posts LIMIT 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00280 (356 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00108 (38%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000371) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00439 (227 reqs/sec) | Rendering: 0.00246 (55%) | DB: 0.00134 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00376 (266 reqs/sec) | Rendering: 0.00289 (76%) | DB: 0.00076 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:10:48) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000134) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00389 (257 reqs/sec) | DB: 0.00132 (33%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000286) SELECT * FROM users LIMIT 1 + User Update (0.000149) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000294) SELECT * FROM users LIMIT 1 + User Load (0.000360) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000308) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:10:48) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000155) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00395 (253 reqs/sec) | DB: 0.00373 (94%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000222) SELECT count(*) AS count_all FROM users  + User Load (0.000244) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:10:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00187 (534 reqs/sec) | DB: 0.00103 (55%) | 302 Found [http://test.host/users/1] + SQL (0.000260) SELECT count(*) AS count_all FROM users  + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00180 (556 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00078 (43%) | 200 OK [http://test.host/users/1] + User Load (0.000308) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00497 (201 reqs/sec) | Rendering: 0.00416 (83%) | DB: 0.00066 (13%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users  +Completed in 0.00204 (490 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00055 (26%) | 200 OK [http://test.host/users] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00279 (358 reqs/sec) | Rendering: 0.00185 (66%) | DB: 0.00055 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000293) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:10:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00302 (331 reqs/sec) | Rendering: 0.00285 (94%) | DB: 0.00029 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:10:48) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000128) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00268 (373 reqs/sec) | DB: 0.00070 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000589) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000281) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000230) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000222) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000305) SELECT * FROM posts LIMIT 1 + Post Load (0.000169) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000138) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + Post Load (0.000272) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000347) SELECT * FROM posts LIMIT 1 + SQL (0.000258) SELECT count(*) AS count_all FROM posts  + User Load (0.000312) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:12:48) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000158) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000111) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00553 (180 reqs/sec) | DB: 0.00545 (98%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000238) SELECT count(*) AS count_all FROM posts  + Post Load (0.000240) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000202) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:12:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000115)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00233 (430 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00160 (68%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000339) SELECT * FROM posts LIMIT 1 + User Load (0.000359) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000251) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000352) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00719 (139 reqs/sec) | Rendering: 0.00532 (73%) | DB: 0.00165 (22%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00284 (351 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00103 (36%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00247 (404 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00100 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00442 (226 reqs/sec) | Rendering: 0.00249 (56%) | DB: 0.00140 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00375 (266 reqs/sec) | Rendering: 0.00288 (76%) | DB: 0.00076 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:12:48) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00360 (277 reqs/sec) | DB: 0.00130 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000125) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000281) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000287) SELECT * FROM users LIMIT 1 + SQL (0.000241) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:12:48) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000152) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00357 (279 reqs/sec) | DB: 0.00360 (100%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000221) SELECT count(*) AS count_all FROM users  + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000190) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:12:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000941) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000126)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00254 (393 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00173 (68%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00513 (194 reqs/sec) | Rendering: 0.00442 (86%) | DB: 0.00056 (10%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users  +Completed in 0.00204 (489 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00055 (26%) | 200 OK [http://test.host/users] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00200 (499 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00060 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000316) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00290 (344 reqs/sec) | Rendering: 0.00194 (66%) | DB: 0.00061 (21%) | 200 OK [http://test.host/users/1] + User Load (0.000333) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:12:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00276 (362 reqs/sec) | Rendering: 0.00262 (94%) | DB: 0.00033 (12%) | 200 OK [http://test.host/users/new] + User Load (0.000302) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:12:48) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000121) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00258 (387 reqs/sec) | DB: 0.00072 (28%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000610) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000222) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000090) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000257) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000264) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000238) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000150) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000278) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + SQL (0.000228) SELECT count(*) AS count_all FROM posts  + User Load (0.000309) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:13:20) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000154) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000108) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00541 (184 reqs/sec) | DB: 0.00531 (98%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000233) SELECT count(*) AS count_all FROM posts  + Post Load (0.000284) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000169) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:13:20) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000400) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000315) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000124)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00177 (63%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000408) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00717 (139 reqs/sec) | Rendering: 0.00542 (75%) | DB: 0.00144 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00280 (356 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00101 (36%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00250 (400 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00104 (41%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000357) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.002158) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000390) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00691 (144 reqs/sec) | Rendering: 0.00254 (36%) | DB: 0.00341 (49%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00368 (271 reqs/sec) | Rendering: 0.00283 (76%) | DB: 0.00076 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:13:20) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000407) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000331) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000139) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000118) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00412 (242 reqs/sec) | DB: 0.00151 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:13:20) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000156) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00355 (281 reqs/sec) | DB: 0.00351 (98%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000245) SELECT count(*) AS count_all FROM users  + User Load (0.000294) SELECT * FROM users LIMIT 1 + SQL (0.000214) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:13:20) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000119)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00178 (560 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00117 (65%) | 200 OK [http://test.host/users/1] + User Load (0.000253) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00501 (199 reqs/sec) | Rendering: 0.00429 (85%) | DB: 0.00056 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000306) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users  +Completed in 0.00206 (485 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00059 (28%) | 200 OK [http://test.host/users] + User Load (0.000344) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000315) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00189 (529 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00066 (34%) | 200 OK [http://test.host/users/1] + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00293 (341 reqs/sec) | Rendering: 0.00198 (67%) | DB: 0.00056 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:13:20) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00270 (370 reqs/sec) | Rendering: 0.00256 (94%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:13:20) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000166) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00335 (298 reqs/sec) | DB: 0.00080 (23%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000603) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000235) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000225) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000216) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + Post Load (0.000141) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000275) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + SQL (0.000227) SELECT count(*) AS count_all FROM posts  + User Load (0.000296) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:13:59) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000114) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00534 (187 reqs/sec) | DB: 0.00520 (97%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000241) SELECT count(*) AS count_all FROM posts  + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000167) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:13:59) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00225 (444 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00152 (67%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000257) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000314) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00688 (145 reqs/sec) | Rendering: 0.00508 (73%) | DB: 0.00144 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000278) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00309 (323 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00110 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00254 (393 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00102 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000379) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00435 (229 reqs/sec) | Rendering: 0.00243 (55%) | DB: 0.00140 (32%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00398 (251 reqs/sec) | Rendering: 0.00308 (77%) | DB: 0.00081 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:13:59) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00357 (280 reqs/sec) | DB: 0.00128 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000149) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:13:59) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000150) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00351 (284 reqs/sec) | DB: 0.00346 (98%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000267) SELECT count(*) AS count_all FROM users  + User Load (0.000274) SELECT * FROM users LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:13:59) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000113)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00165 (604 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00113 (68%) | 200 OK [http://test.host/users/1] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000367) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00550 (181 reqs/sec) | Rendering: 0.00456 (82%) | DB: 0.00063 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000279) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000340) SELECT * FROM users  +Completed in 0.00224 (446 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00062 (27%) | 200 OK [http://test.host/users] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00182 (548 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00055 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00281 (355 reqs/sec) | Rendering: 0.00187 (66%) | DB: 0.00055 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000312) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:13:59) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00273 (366 reqs/sec) | Rendering: 0.00258 (94%) | DB: 0.00031 (11%) | 200 OK [http://test.host/users/new] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:13:59) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000122) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00258 (387 reqs/sec) | DB: 0.00067 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000598) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000288) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000180) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000223) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000199) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000254) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000300) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 1 + SQL (0.000210) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000273) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 2 + SQL (0.000200) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000296) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000109) UPDATE schema_info SET version = 3 + SQL (0.000233) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000256) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000332) SELECT * FROM posts LIMIT 1 + Post Load (0.000158) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + Post Load (0.000282) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:15:39) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000176) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000115) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00576 (173 reqs/sec) | DB: 0.00573 (99%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000232) SELECT count(*) AS count_all FROM posts  + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000170) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:15:39) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000109)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00223 (449 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00150 (67%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000215) SELECT * FROM posts WHERE (posts.user_id = 1)  +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000288) SELECT * FROM posts LIMIT 1 + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:15:39) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000520) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000278) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000348) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00768 (130 reqs/sec) | Rendering: 0.00547 (71%) | DB: 0.00194 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:15:39) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000273) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00316 (316 reqs/sec) | Rendering: 0.00009 (2%) | DB: 0.00112 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:15:39) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00254 (394 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00099 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:15:39) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00440 (227 reqs/sec) | Rendering: 0.00249 (56%) | DB: 0.00138 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:15:39) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00370 (269 reqs/sec) | Rendering: 0.00285 (76%) | DB: 0.00077 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + User Load (0.000366) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:15:39) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000365) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000355) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000145) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00445 (224 reqs/sec) | DB: 0.00167 (37%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000269) SELECT * FROM users LIMIT 1 + User Update (0.000132) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + SQL (0.000187) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:15:39) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000151) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00367 (272 reqs/sec) | DB: 0.00352 (95%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000224) SELECT count(*) AS count_all FROM users  + User Load (0.000257) SELECT * FROM users LIMIT 1 + SQL (0.000189) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:15:39) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000363) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000122)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00191 (524 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00116 (60%) | 200 OK [http://test.host/users/1] + User Load (0.000372) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:15:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00497 (201 reqs/sec) | Rendering: 0.00424 (85%) | DB: 0.00068 (13%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:15:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000263) SELECT * FROM users  +Completed in 0.00204 (489 reqs/sec) | Rendering: 0.00008 (4%) | DB: 0.00052 (25%) | 200 OK [http://test.host/users] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:15:40) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00174 (573 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00053 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:15:40) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00270 (370 reqs/sec) | Rendering: 0.00182 (67%) | DB: 0.00052 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:15:40) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00268 (372 reqs/sec) | Rendering: 0.00255 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:15:40) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00257 (388 reqs/sec) | DB: 0.00065 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000599) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000256) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000223) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000259) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000266) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000228) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000312) SELECT * FROM posts LIMIT 1 + Post Load (0.000251) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000132) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + Post Load (0.000279) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000194) SELECT count(*) AS count_all FROM posts  + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:15:51) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000171) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000121) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00570 (175 reqs/sec) | DB: 0.00540 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000304) SELECT count(*) AS count_all FROM posts  + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000172) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:15:51) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00215 (465 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00159 (73%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000393) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00723 (138 reqs/sec) | Rendering: 0.00541 (74%) | DB: 0.00144 (19%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000264) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00102 (36%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000287) SELECT * FROM posts LIMIT 1 + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00249 (401 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00104 (41%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000371) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00435 (229 reqs/sec) | Rendering: 0.00245 (56%) | DB: 0.00138 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00382 (261 reqs/sec) | Rendering: 0.00295 (77%) | DB: 0.00077 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:15:51) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000341) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000127) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00379 (263 reqs/sec) | DB: 0.00139 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000341) SELECT * FROM users LIMIT 1 + SQL (0.000261) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:15:51) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000176) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00436 (229 reqs/sec) | DB: 0.00368 (84%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000271) SELECT count(*) AS count_all FROM users  + User Load (0.000294) SELECT * FROM users LIMIT 1 + SQL (0.000202) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:15:51) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000139)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00191 (524 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00124 (64%) | 200 OK [http://test.host/users/1] + User Load (0.000292) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000338) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00711 (140 reqs/sec) | Rendering: 0.00632 (88%) | DB: 0.00063 (8%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users  +Completed in 0.00417 (239 reqs/sec) | Rendering: 0.00010 (2%) | DB: 0.00056 (13%) | 200 OK [http://test.host/users] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00181 (552 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00056 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00285 (351 reqs/sec) | Rendering: 0.00188 (65%) | DB: 0.00057 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:15:51) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00264 (94%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:15:51) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000164) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00292 (342 reqs/sec) | DB: 0.00074 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000599) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000231) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000356) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000271) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000220) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000298) SELECT * FROM posts LIMIT 1 + Post Load (0.000183) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + Post Load (0.000270) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000325) SELECT * FROM posts LIMIT 1 + SQL (0.000250) SELECT count(*) AS count_all FROM posts  + User Load (0.000278) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:16:54) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000151) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000107) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00540 (185 reqs/sec) | DB: 0.00538 (99%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000284) SELECT count(*) AS count_all FROM posts  + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000165) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:16:54) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00219 (456 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00158 (72%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:16:54) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000248) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000345) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00694 (144 reqs/sec) | Rendering: 0.00523 (75%) | DB: 0.00140 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:16:54) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00280 (356 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00102 (36%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:16:54) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00262 (381 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00102 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:16:54) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000419) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00459 (218 reqs/sec) | Rendering: 0.00261 (56%) | DB: 0.00144 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:16:54) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000340) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00380 (263 reqs/sec) | Rendering: 0.00286 (75%) | DB: 0.00083 (21%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:16:54) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000259) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000170) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00380 (263 reqs/sec) | DB: 0.00141 (37%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000292) SELECT * FROM users LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:16:54) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000161) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00363 (275 reqs/sec) | DB: 0.00350 (96%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000232) SELECT count(*) AS count_all FROM users  + User Load (0.000294) SELECT * FROM users LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:16:54) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000126)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00163 (613 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00112 (69%) | 200 OK [http://test.host/users/1] + User Load (0.000329) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:16:54) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00514 (194 reqs/sec) | Rendering: 0.00436 (84%) | DB: 0.00066 (12%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000278) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:16:54) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000292) SELECT * FROM users  +Completed in 0.00207 (483 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00057 (27%) | 200 OK [http://test.host/users] + User Load (0.000287) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:16:54) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00197 (507 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00059 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000327) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:16:55) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000378) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00355 (281 reqs/sec) | Rendering: 0.00231 (65%) | DB: 0.00071 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000308) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:16:55) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00270 (370 reqs/sec) | Rendering: 0.00256 (95%) | DB: 0.00031 (11%) | 200 OK [http://test.host/users/new] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:16:55) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000346) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000136) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00304 (329 reqs/sec) | DB: 0.00075 (24%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000616) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000291) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000224) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000199) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000356) CREATE TABLE schema_info (version integer) + SQL (0.000089) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000269) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000276) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000233) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 2 + SQL (0.000181) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000233) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + Post Load (0.000145) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000143) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000276) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + SQL (0.000206) SELECT count(*) AS count_all FROM posts  + User Load (0.000302) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:17:06) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000351) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000152) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000105) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00556 (179 reqs/sec) | DB: 0.00543 (97%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000232) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000164) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:17:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000120)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00229 (436 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00152 (66%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000285) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00721 (138 reqs/sec) | Rendering: 0.00544 (75%) | DB: 0.00143 (19%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000285) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000252) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00106 (37%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00253 (394 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00102 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000425) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00474 (211 reqs/sec) | Rendering: 0.00281 (59%) | DB: 0.00141 (29%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00376 (266 reqs/sec) | Rendering: 0.00289 (76%) | DB: 0.00077 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:17:06) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000258) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000115) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00374 (267 reqs/sec) | DB: 0.00130 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Update (0.000133) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Update (0.000109) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000172) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:17:06) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000156) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00353 (283 reqs/sec) | DB: 0.00344 (97%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000264) SELECT count(*) AS count_all FROM users  + User Load (0.000275) SELECT * FROM users LIMIT 1 + SQL (0.000246) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:17:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000120)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00172 (582 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00122 (71%) | 200 OK [http://test.host/users/1] + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000347) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00550 (181 reqs/sec) | Rendering: 0.00466 (84%) | DB: 0.00060 (10%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000287) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000269) SELECT * FROM users  +Completed in 0.00206 (485 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00056 (27%) | 200 OK [http://test.host/users] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00181 (551 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00053 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00288 (347 reqs/sec) | Rendering: 0.00190 (66%) | DB: 0.00058 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000319) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:17:06) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00275 (364 reqs/sec) | Rendering: 0.00261 (94%) | DB: 0.00032 (11%) | 200 OK [http://test.host/users/new] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:17:06) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000347) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000124) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00289 (346 reqs/sec) | DB: 0.00074 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000595) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000274) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 2 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000218) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000353) CREATE TABLE schema_info (version integer) + SQL (0.000090) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000368) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000793) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000143) UPDATE schema_info SET version = 1 + SQL (0.000225) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000299) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000099) UPDATE schema_info SET version = 2 + SQL (0.000206) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000249) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000216) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + Post Load (0.000171) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000139) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000265) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM posts  + User Load (0.000289) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:17:25) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000369) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000287) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000127) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00597 (167 reqs/sec) | DB: 0.00641 (107%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000230) SELECT count(*) AS count_all FROM posts  + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000174) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:17:25) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00222 (451 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00157 (70%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + User Load (0.000254) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:17:25) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00677 (147 reqs/sec) | Rendering: 0.00508 (75%) | DB: 0.00140 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000317) SELECT * FROM posts LIMIT 1 + User Load (0.000309) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:17:25) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000260) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00294 (340 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00117 (39%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000257) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00273 (366 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00108 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00438 (228 reqs/sec) | Rendering: 0.00246 (56%) | DB: 0.00137 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:17:25) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00409 (244 reqs/sec) | Rendering: 0.00317 (77%) | DB: 0.00078 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000301) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:17:25) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000138) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00392 (255 reqs/sec) | DB: 0.00136 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Update (0.000137) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000147) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000108) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:17:25) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000151) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00351 (284 reqs/sec) | DB: 0.00353 (100%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000358) SELECT count(*) AS count_all FROM users  + User Load (0.000310) SELECT * FROM users LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:17:25) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000362) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000123)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00188 (532 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00134 (71%) | 200 OK [http://test.host/users/1] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:17:25) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000343) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00532 (188 reqs/sec) | Rendering: 0.00452 (85%) | DB: 0.00060 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:17:25) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000319) SELECT * FROM users  +Completed in 0.00224 (446 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00060 (26%) | 200 OK [http://test.host/users] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00183 (547 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00056 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:26) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00280 (357 reqs/sec) | Rendering: 0.00187 (66%) | DB: 0.00055 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000348) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:17:26) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00274 (365 reqs/sec) | Rendering: 0.00259 (94%) | DB: 0.00035 (12%) | 200 OK [http://test.host/users/new] + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:17:26) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000146) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00300 (333 reqs/sec) | DB: 0.00076 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000597) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000278) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000223) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000214) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000279) SELECT * FROM posts LIMIT 1 + Post Load (0.000233) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000131) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + Post Load (0.000301) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + SQL (0.000220) SELECT count(*) AS count_all FROM posts  + User Load (0.000332) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:17:32) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00539 (185 reqs/sec) | DB: 0.00535 (99%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000237) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000187) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:17:32) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00221 (452 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00154 (69%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000386) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00756 (132 reqs/sec) | Rendering: 0.00582 (76%) | DB: 0.00145 (19%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000308) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000464) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000299) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00342 (292 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00131 (38%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000255) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00260 (384 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00104 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000379) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00439 (227 reqs/sec) | Rendering: 0.00244 (55%) | DB: 0.00141 (32%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00394 (253 reqs/sec) | Rendering: 0.00307 (77%) | DB: 0.00076 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:17:32) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000307) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000125) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00372 (269 reqs/sec) | DB: 0.00136 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:17:32) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000152) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00356 (280 reqs/sec) | DB: 0.00348 (97%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000227) SELECT count(*) AS count_all FROM users  + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:17:32) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000114)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00182 (549 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00107 (58%) | 200 OK [http://test.host/users/1] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00520 (192 reqs/sec) | Rendering: 0.00448 (86%) | DB: 0.00057 (10%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users  +Completed in 0.00208 (481 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00055 (26%) | 200 OK [http://test.host/users] + User Load (0.000285) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00181 (553 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00056 (31%) | 200 OK [http://test.host/users/1] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00280 (356 reqs/sec) | Rendering: 0.00186 (66%) | DB: 0.00056 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000292) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:17:32) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00298 (336 reqs/sec) | Rendering: 0.00282 (94%) | DB: 0.00029 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000304) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:17:32) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000341) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000143) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00517 (193 reqs/sec) | DB: 0.00079 (15%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000631) CREATE TABLE schema_info (version integer) + SQL (0.000097) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000237) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000277) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 2 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000224) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000250) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000219) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + Post Load (0.000184) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000131) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000337) SELECT * FROM posts LIMIT 1 + Post Load (0.000311) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + SQL (0.000230) SELECT count(*) AS count_all FROM posts  + User Load (0.000342) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:17:36) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.001114) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000182) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000112) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00699 (143 reqs/sec) | DB: 0.00631 (90%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000266) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000166) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:17:36) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00218 (458 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00154 (70%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:17:36) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000360) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00700 (142 reqs/sec) | Rendering: 0.00517 (73%) | DB: 0.00144 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:17:36) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000285) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00303 (330 reqs/sec) | Rendering: 0.00009 (2%) | DB: 0.00105 (34%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:36) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00252 (397 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00104 (41%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:36) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000374) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00433 (230 reqs/sec) | Rendering: 0.00243 (56%) | DB: 0.00138 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:17:36) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00390 (256 reqs/sec) | Rendering: 0.00304 (77%) | DB: 0.00075 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000310) SELECT * FROM posts LIMIT 1 + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:17:36) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000258) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00385 (259 reqs/sec) | DB: 0.00145 (37%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000125) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000296) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:17:36) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000162) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00371 (269 reqs/sec) | DB: 0.00358 (96%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000264) SELECT count(*) AS count_all FROM users  + User Load (0.000255) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:17:36) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000112)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00163 (614 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00110 (67%) | 200 OK [http://test.host/users/1] + User Load (0.000333) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:17:36) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00513 (194 reqs/sec) | Rendering: 0.00440 (85%) | DB: 0.00064 (12%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:17:37) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users  +Completed in 0.00216 (463 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00057 (26%) | 200 OK [http://test.host/users] + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:37) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00181 (552 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00056 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:37) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00295 (338 reqs/sec) | Rendering: 0.00199 (67%) | DB: 0.00057 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:17:37) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00274 (365 reqs/sec) | Rendering: 0.00260 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:17:37) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000124) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00264 (378 reqs/sec) | DB: 0.00068 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000594) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000277) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 1 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000244) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000227) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000269) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000247) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000301) SELECT * FROM posts LIMIT 1 + Post Load (0.000231) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000138) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + Post Load (0.000291) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000192) SELECT count(*) AS count_all FROM posts  + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:17:41) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000176) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000117) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00567 (176 reqs/sec) | DB: 0.00538 (94%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000286) SELECT count(*) AS count_all FROM posts  + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000165) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:17:41) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000110)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00217 (461 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00156 (71%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000243) SELECT count(*) AS count_all FROM posts  + Post Load (0.000286) SELECT * FROM posts LIMIT 1 + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000248) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000316) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00672 (148 reqs/sec) | Rendering: 0.00505 (75%) | DB: 0.00166 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000256) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00101 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00247 (405 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00097 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000290) SELECT * FROM posts LIMIT 1 + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000327) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000271) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000368) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00466 (214 reqs/sec) | Rendering: 0.00252 (54%) | DB: 0.00152 (32%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000229) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000347) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00292 (74%) | DB: 0.00083 (21%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:17:41) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000142) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00401 (249 reqs/sec) | DB: 0.00130 (32%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000297) SELECT * FROM users LIMIT 1 + User Update (0.000145) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000286) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + SQL (0.000193) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:17:41) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000164) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00361 (277 reqs/sec) | DB: 0.00361 (100%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000219) SELECT count(*) AS count_all FROM users  + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:17:41) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000114)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00161 (620 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00102 (63%) | 200 OK [http://test.host/users/1] + SQL (0.000252) SELECT count(*) AS count_all FROM users  + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00498 (200 reqs/sec) | Rendering: 0.00428 (85%) | DB: 0.00082 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users  +Completed in 0.00209 (477 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00055 (26%) | 200 OK [http://test.host/users] + User Load (0.000277) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000405) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00200 (499 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00068 (34%) | 200 OK [http://test.host/users/1] + User Load (0.000322) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00313 (319 reqs/sec) | Rendering: 0.00216 (68%) | DB: 0.00060 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:17:41) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00265 (95%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000281) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:17:41) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000126) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00269 (372 reqs/sec) | DB: 0.00071 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000587) CREATE TABLE schema_info (version integer) + SQL (0.000092) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000215) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000237) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000101) UPDATE schema_info SET version = 3 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000222) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000320) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000221) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000304) SELECT * FROM posts LIMIT 1 + Post Load (0.000183) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + Post Load (0.000275) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000393) SELECT * FROM posts LIMIT 1 + SQL (0.000239) SELECT count(*) AS count_all FROM posts  + User Load (0.000288) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:18:00) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000152) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000101) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00547 (182 reqs/sec) | DB: 0.00538 (98%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000236) SELECT count(*) AS count_all FROM posts  + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000169) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:18:00) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000296) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000124)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00264 (379 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00167 (63%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000366) SELECT count(*) AS count_all FROM posts  + Post Load (0.000299) SELECT * FROM posts LIMIT 1 + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000366) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000296) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000468) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00803 (124 reqs/sec) | Rendering: 0.00592 (73%) | DB: 0.00206 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + User Load (0.000292) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000439) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000320) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00342 (292 reqs/sec) | Rendering: 0.00010 (2%) | DB: 0.00133 (38%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000284) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00274 (365 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00110 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000356) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00441 (226 reqs/sec) | Rendering: 0.00252 (57%) | DB: 0.00135 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00419 (238 reqs/sec) | Rendering: 0.00298 (71%) | DB: 0.00087 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:18:00) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000134) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00367 (272 reqs/sec) | DB: 0.00127 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000328) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000295) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000281) SELECT * FROM users LIMIT 1 + SQL (0.000193) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:18:00) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000152) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00365 (274 reqs/sec) | DB: 0.00367 (100%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000221) SELECT count(*) AS count_all FROM users  + User Load (0.000244) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:18:00) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000113)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00158 (634 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00102 (64%) | 200 OK [http://test.host/users/1] + SQL (0.000204) SELECT count(*) AS count_all FROM users  + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00510 (196 reqs/sec) | Rendering: 0.00438 (86%) | DB: 0.00076 (14%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000266) SELECT * FROM users  +Completed in 0.00217 (461 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00053 (24%) | 200 OK [http://test.host/users] + User Load (0.000298) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000333) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00196 (509 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00063 (32%) | 200 OK [http://test.host/users/1] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00303 (329 reqs/sec) | Rendering: 0.00205 (67%) | DB: 0.00055 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:18:00) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00273 (365 reqs/sec) | Rendering: 0.00260 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:18:00) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000124) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00267 (375 reqs/sec) | DB: 0.00070 (26%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000635) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000247) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000277) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000246) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000221) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000217) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000257) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000212) UPDATE schema_info SET version = 3 + SQL (0.000307) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000315) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000113) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + Post Load (0.000181) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000114) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + Post Load (0.000280) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000372) SELECT * FROM posts LIMIT 1 + SQL (0.000273) SELECT count(*) AS count_all FROM posts  + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:18:04) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00529 (189 reqs/sec) | DB: 0.00576 (108%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000338) SELECT count(*) AS count_all FROM posts  + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000164) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:18:04) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00215 (464 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00161 (75%) | 200 OK [http://test.host/users/1/posts/1] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00695 (143 reqs/sec) | Rendering: 0.00526 (75%) | DB: 0.00142 (20%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000264) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00285 (350 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00103 (36%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00268 (372 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00108 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000489) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00475 (210 reqs/sec) | Rendering: 0.00274 (57%) | DB: 0.00148 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00370 (270 reqs/sec) | Rendering: 0.00285 (76%) | DB: 0.00076 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:18:04) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000281) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000145) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000117) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00409 (244 reqs/sec) | DB: 0.00144 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000294) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Update (0.000178) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:18:04) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000157) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00358 (279 reqs/sec) | DB: 0.00358 (99%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000231) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:18:04) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000118)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00168 (594 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00107 (63%) | 200 OK [http://test.host/users/1] + User Load (0.000274) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00504 (198 reqs/sec) | Rendering: 0.00432 (85%) | DB: 0.00058 (11%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users  +Completed in 0.00203 (492 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00054 (26%) | 200 OK [http://test.host/users] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00183 (546 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00054 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00187 (66%) | DB: 0.00056 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000294) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:18:04) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00270 (370 reqs/sec) | Rendering: 0.00256 (95%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/new] + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:18:04) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000160) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00299 (334 reqs/sec) | DB: 0.00076 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, Fixtures, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000649) CREATE TABLE schema_info (version integer) + SQL (0.000099) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000325) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000379) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 1 + SQL (0.000190) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000233) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000200) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000345) CREATE TABLE schema_info (version integer) + SQL (0.000092) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000449) SELECT * FROM posts LIMIT 1 + Post Load (0.000185) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000148) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + SQL (0.000190) SELECT count(*) AS count_all FROM posts  + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:18:30) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000162) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000108) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000385) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00637 (157 reqs/sec) | DB: 0.00546 (85%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000311) SELECT count(*) AS count_all FROM posts  + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000166) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:18:30) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000265) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000122)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00235 (426 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00163 (69%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000258) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000439) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000507) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00879 (113 reqs/sec) | Rendering: 0.00644 (73%) | DB: 0.00202 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000257) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00289 (345 reqs/sec) | Rendering: 0.00009 (3%) | DB: 0.00101 (34%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000469) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000248) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00261 (383 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00123 (47%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000352) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000418) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00554 (180 reqs/sec) | Rendering: 0.00282 (50%) | DB: 0.00162 (29%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00393 (254 reqs/sec) | Rendering: 0.00301 (76%) | DB: 0.00083 (21%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:18:30) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000109) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00364 (274 reqs/sec) | DB: 0.00125 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Update (0.000172) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000112) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:18:30) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000142) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00340 (293 reqs/sec) | DB: 0.00349 (102%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000211) SELECT count(*) AS count_all FROM users  + User Load (0.000242) SELECT * FROM users LIMIT 1 + SQL (0.000171) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:18:30) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000106)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00151 (661 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00099 (65%) | 200 OK [http://test.host/users/1] + SQL (0.000194) SELECT count(*) AS count_all FROM users  + User Load (0.000241) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00498 (200 reqs/sec) | Rendering: 0.00429 (86%) | DB: 0.00072 (14%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000266) SELECT * FROM users  +Completed in 0.00201 (498 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00053 (26%) | 200 OK [http://test.host/users] + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00182 (548 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00054 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000327) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00294 (340 reqs/sec) | Rendering: 0.00188 (64%) | DB: 0.00059 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:18:30) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00282 (354 reqs/sec) | Rendering: 0.00269 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:18:30) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000127) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00266 (375 reqs/sec) | DB: 0.00069 (25%) | 302 Found [http://test.host/users/1?user=namebobemailbob%40bob.comage13] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000592) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000235) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000274) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000224) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000217) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000321) CREATE TABLE schema_info (version integer) + SQL (0.000084) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000275) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000292) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000098) UPDATE schema_info SET version = 1 + SQL (0.000203) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000269) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000174) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000299) SELECT * FROM posts LIMIT 1 + Post Load (0.000209) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + SQL (0.000253) SELECT count(*) AS count_all FROM posts  + User Load (0.000369) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:18:37) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000151) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00542 (184 reqs/sec) | DB: 0.00556 (102%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000233) SELECT count(*) AS count_all FROM posts  + Post Load (0.000294) SELECT * FROM posts LIMIT 1 + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000171) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:18:37) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000340) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000091)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00233 (429 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00162 (69%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000202) SELECT count(*) AS count_all FROM posts  + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:18:37) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00730 (137 reqs/sec) | Rendering: 0.00561 (76%) | DB: 0.00158 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:18:37) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000252) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00280 (356 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00100 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:37) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00259 (385 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00111 (42%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:37) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000273) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000444) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00501 (199 reqs/sec) | Rendering: 0.00284 (56%) | DB: 0.00155 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + User Load (0.000290) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:18:37) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00404 (247 reqs/sec) | Rendering: 0.00303 (74%) | DB: 0.00089 (21%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:18:37) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000275) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00375 (266 reqs/sec) | DB: 0.00134 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000274) SELECT * FROM users LIMIT 1 + User Update (0.000144) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:18:38) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000120) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00336 (297 reqs/sec) | DB: 0.00353 (105%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000222) SELECT count(*) AS count_all FROM users  + User Load (0.000272) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:18:38) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000106)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00159 (629 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00112 (70%) | 200 OK [http://test.host/users/1] + SQL (0.000194) SELECT count(*) AS count_all FROM users  + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:18:38) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00518 (193 reqs/sec) | Rendering: 0.00447 (86%) | DB: 0.00078 (14%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:18:38) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users  +Completed in 0.00202 (493 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00054 (26%) | 200 OK [http://test.host/users] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00185 (541 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00055 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00297 (336 reqs/sec) | Rendering: 0.00201 (67%) | DB: 0.00055 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:18:38) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.08878 (11 reqs/sec) | Rendering: 0.08864 (99%) | DB: 0.00027 (0%) | 200 OK [http://test.host/users/new] + User Load (0.000288) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:18:38) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000160) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00315 (317 reqs/sec) | DB: 0.00080 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: FixtureClassNotFound, Fixtures, Fixture +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000605) CREATE TABLE schema_info (version integer) + SQL (0.000114) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000279) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000225) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000240) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000255) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000240) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000214) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000325) SELECT * FROM posts LIMIT 1 + Post Load (0.000162) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + Post Load (0.000266) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM posts  + User Load (0.000353) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:18:41) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000105) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00530 (188 reqs/sec) | DB: 0.00530 (100%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000226) SELECT count(*) AS count_all FROM posts  + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000171) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:18:41) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000110)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00221 (453 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00155 (70%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000206) SELECT count(*) AS count_all FROM posts  + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:18:41) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00679 (147 reqs/sec) | Rendering: 0.00514 (75%) | DB: 0.00156 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:18:41) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000257) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00291 (343 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00103 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:18:41) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000340) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00544 (183 reqs/sec) | Rendering: 0.00385 (70%) | DB: 0.00138 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000279) SELECT * FROM posts LIMIT 1 + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00268 (373 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00107 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:18:41) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00424 (236 reqs/sec) | Rendering: 0.00238 (56%) | DB: 0.00131 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:18:41) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00404 (247 reqs/sec) | Rendering: 0.00320 (79%) | DB: 0.00075 (18%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:18:41) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000116) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00363 (275 reqs/sec) | DB: 0.00127 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Update (0.000128) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:18:42) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000120) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00352 (284 reqs/sec) | DB: 0.00345 (98%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000246) SELECT count(*) AS count_all FROM users  + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000180) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:18:42) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000088)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00160 (626 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00104 (65%) | 200 OK [http://test.host/users/1] + SQL (0.000221) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:18:42) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00529 (189 reqs/sec) | Rendering: 0.00459 (86%) | DB: 0.00077 (14%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000277) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:18:42) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users  +Completed in 0.00208 (480 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00057 (27%) | 200 OK [http://test.host/users] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:18:42) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00386 (258 reqs/sec) | Rendering: 0.00297 (76%) | DB: 0.00054 (14%) | 200 OK [http://test.host/users] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:42) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00181 (553 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00055 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:18:42) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00280 (357 reqs/sec) | Rendering: 0.00182 (64%) | DB: 0.00058 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:18:42) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00266 (376 reqs/sec) | Rendering: 0.00253 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:18:42) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000118) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00254 (393 reqs/sec) | DB: 0.00066 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: FixtureClassNotFound, Fixtures, Fixture +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000610) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000246) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000276) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000225) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000212) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000263) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000224) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000291) SELECT * FROM posts LIMIT 1 + Post Load (0.000176) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000187) SELECT count(*) AS count_all FROM posts  + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:20:02) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000380) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000201) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000126) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00640 (156 reqs/sec) | DB: 0.00536 (83%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000249) SELECT count(*) AS count_all FROM posts  + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000164) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:20:02) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000143)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00232 (431 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00155 (66%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000286) SELECT count(*) AS count_all FROM posts  + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000232) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00678 (147 reqs/sec) | Rendering: 0.00516 (76%) | DB: 0.00162 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000225) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00280 (357 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00099 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000360) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000410) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00590 (169 reqs/sec) | Rendering: 0.00410 (69%) | DB: 0.00160 (27%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00257 (388 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00101 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00430 (232 reqs/sec) | Rendering: 0.00241 (55%) | DB: 0.00142 (32%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00403 (247 reqs/sec) | Rendering: 0.00294 (72%) | DB: 0.00079 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:20:02) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000119) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000109) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00353 (283 reqs/sec) | DB: 0.00127 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000161) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000403) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000132) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000171) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:20:02) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000119) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00341 (293 reqs/sec) | DB: 0.00362 (106%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000274) SELECT count(*) AS count_all FROM users  + User Load (0.000258) SELECT * FROM users LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:20:02) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000088)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00162 (616 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00109 (67%) | 200 OK [http://test.host/users/1] + SQL (0.000205) SELECT count(*) AS count_all FROM users  + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000338) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00523 (191 reqs/sec) | Rendering: 0.00435 (83%) | DB: 0.00080 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000258) SELECT * FROM users  +Completed in 0.00199 (501 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00052 (25%) | 200 OK [http://test.host/users] + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:20:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000247) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00381 (262 reqs/sec) | Rendering: 0.00297 (77%) | DB: 0.00049 (13%) | 200 OK [http://test.host/users] + User Load (0.000327) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:20:03) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000346) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00231 (432 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00067 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000277) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:20:03) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00185 (66%) | DB: 0.00055 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:20:03) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00265 (377 reqs/sec) | Rendering: 0.00252 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:20:03) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000172) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00297 (337 reqs/sec) | DB: 0.00075 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: FixtureClassNotFound, Fixtures, Fixture +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000615) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000242) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000276) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000227) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000223) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000325) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000251) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000266) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000221) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000240) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000279) SELECT * FROM posts LIMIT 1 + Post Load (0.000164) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000275) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + SQL (0.000190) SELECT count(*) AS count_all FROM posts  + User Load (0.000289) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:21:38) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000167) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00582 (171 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00521 (89%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000173) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:21:38) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000352) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000265) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000090)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00241 (415 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00144 (59%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000211) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000258) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000386) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00710 (140 reqs/sec) | Rendering: 0.00520 (73%) | DB: 0.00167 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000292) SELECT * FROM posts LIMIT 1 + User Load (0.000294) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000315) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000255) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00304 (328 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00116 (38%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000365) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00604 (165 reqs/sec) | Rendering: 0.00409 (67%) | DB: 0.00148 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00248 (403 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00100 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000275) SELECT * FROM posts LIMIT 1 + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00445 (224 reqs/sec) | Rendering: 0.00256 (57%) | DB: 0.00145 (32%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00378 (264 reqs/sec) | Rendering: 0.00291 (76%) | DB: 0.00078 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000245) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:21:38) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000336) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00372 (268 reqs/sec) | DB: 0.00133 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000135) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Update (0.000125) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:21:38) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000157) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00384 (260 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00353 (91%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + User Load (0.000277) SELECT * FROM users LIMIT 1 + SQL (0.000193) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:21:38) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000125)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00170 (588 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00089 (52%) | 200 OK [http://test.host/users/1] + SQL (0.000201) SELECT count(*) AS count_all FROM users  + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.08632 (11 reqs/sec) | Rendering: 0.08559 (99%) | DB: 0.00077 (0%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users  +Completed in 0.00206 (485 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00053 (25%) | 200 OK [http://test.host/users] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000260) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00362 (275 reqs/sec) | Rendering: 0.00278 (76%) | DB: 0.00052 (14%) | 200 OK [http://test.host/users] + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00173 (579 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00051 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00298 (335 reqs/sec) | Rendering: 0.00205 (68%) | DB: 0.00053 (17%) | 200 OK [http://test.host/users/1] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:21:38) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00275 (362 reqs/sec) | Rendering: 0.00259 (94%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:21:38) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000336) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000125) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00278 (359 reqs/sec) | DB: 0.00073 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: FixtureClassNotFound, Fixtures, Fixture +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.002977) CREATE TABLE schema_info (version integer) + SQL (0.000145) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000301) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000371) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000117) UPDATE schema_info SET version = 1 + SQL (0.000235) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000272) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000102) UPDATE schema_info SET version = 2 + SQL (0.000199) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000248) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000179) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000236) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000216) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000218) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000203) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000184) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000262) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM posts  + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:36:02) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000327) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000160) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000106) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00553 (180 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00517 (93%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000355) SELECT * FROM posts LIMIT 1 + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000223) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:36:02) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000395) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000315) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000125)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00285 (350 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00173 (60%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000224) SELECT count(*) AS count_all FROM posts  + Post Load (0.000298) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000396) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.02743 (36 reqs/sec) | Rendering: 0.02570 (93%) | DB: 0.00169 (6%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000509) SELECT * FROM posts LIMIT 1 + User Load (0.000341) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000334) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00367 (272 reqs/sec) | Rendering: 0.00009 (2%) | DB: 0.00153 (41%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000294) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000466) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000341) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.03639 (27 reqs/sec) | Rendering: 0.03457 (94%) | DB: 0.00162 (4%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000332) SELECT * FROM posts LIMIT 1 + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000312) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00322 (311 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00130 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.001352) SELECT * FROM posts LIMIT 1 + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000333) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000300) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00496 (201 reqs/sec) | Rendering: 0.00270 (54%) | DB: 0.00263 (52%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.03025 (33 reqs/sec) | Rendering: 0.02900 (95%) | DB: 0.00087 (2%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:36:02) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000116) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00373 (268 reqs/sec) | DB: 0.00129 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000150) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000367) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000292) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:36:02) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000155) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00412 (242 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00365 (88%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + User Load (0.000267) SELECT * FROM users LIMIT 1 + SQL (0.000277) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:36:02) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000314) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000097)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00170 (587 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00096 (56%) | 200 OK [http://test.host/users/1] + SQL (0.000208) SELECT count(*) AS count_all FROM users  + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000338) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.02269 (44 reqs/sec) | Rendering: 0.02190 (96%) | DB: 0.00081 (3%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000269) SELECT * FROM users  +Completed in 0.00202 (494 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00054 (26%) | 200 OK [http://test.host/users] + User Load (0.000341) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00406 (246 reqs/sec) | Rendering: 0.00311 (76%) | DB: 0.00064 (15%) | 200 OK [http://test.host/users] + User Load (0.000297) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00180 (555 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00059 (32%) | 200 OK [http://test.host/users/1] + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000454) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00888 (112 reqs/sec) | Rendering: 0.00765 (86%) | DB: 0.00071 (8%) | 200 OK [http://test.host/users/1] + User Load (0.000321) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:36:02) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00407 (245 reqs/sec) | Rendering: 0.00390 (95%) | DB: 0.00032 (7%) | 200 OK [http://test.host/users/new] + User Load (0.000324) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:36:02) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000399) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000155) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00333 (300 reqs/sec) | DB: 0.00088 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: FixtureClassNotFound, Fixtures, Fixture +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000648) CREATE TABLE schema_info (version integer) + SQL (0.000101) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000325) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000102) UPDATE schema_info SET version = 1 + SQL (0.000225) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000253) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000239) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000253) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000270) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000214) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000083) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000201) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000305) SELECT * FROM posts LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000261) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM posts  + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:37:15) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000167) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000108) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00583 (171 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00514 (88%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + Post Load (0.000277) SELECT * FROM posts LIMIT 1 + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000226) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:37:15) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000110)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00228 (438 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00168 (73%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000191) SELECT count(*) AS count_all FROM posts  + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000327) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00685 (146 reqs/sec) | Rendering: 0.00512 (74%) | DB: 0.00155 (22%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000227) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00276 (362 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00098 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000227) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000347) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00568 (175 reqs/sec) | Rendering: 0.00405 (71%) | DB: 0.00138 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00266 (375 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00100 (37%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000389) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000361) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000292) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000346) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00492 (203 reqs/sec) | Rendering: 0.00265 (53%) | DB: 0.00165 (33%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00426 (234 reqs/sec) | Rendering: 0.00305 (71%) | DB: 0.00077 (18%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:37:15) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000259) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000166) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00406 (246 reqs/sec) | DB: 0.00137 (33%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000268) SELECT * FROM users LIMIT 1 + User Update (0.000137) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000170) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000283) SELECT * FROM users LIMIT 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Update (0.000196) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:37:15) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000182) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00482 (207 reqs/sec) | Rendering: 0.00006 (1%) | DB: 0.00373 (77%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000307) SELECT count(*) AS count_all FROM users  + User Load (0.000264) SELECT * FROM users LIMIT 1 + SQL (0.000192) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:37:15) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000121)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00169 (592 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00117 (69%) | 200 OK [http://test.host/users/1] + SQL (0.000219) SELECT count(*) AS count_all FROM users  + User Load (0.000260) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00508 (197 reqs/sec) | Rendering: 0.00427 (84%) | DB: 0.00081 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000263) SELECT * FROM users  +Completed in 0.00200 (499 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00054 (26%) | 200 OK [http://test.host/users] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:37:15) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00396 (252 reqs/sec) | Rendering: 0.00307 (77%) | DB: 0.00054 (13%) | 200 OK [http://test.host/users] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:37:16) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000432) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00245 (408 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00069 (28%) | 200 OK [http://test.host/users/1] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:37:16) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00273 (365 reqs/sec) | Rendering: 0.00180 (65%) | DB: 0.00053 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:37:16) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00289 (346 reqs/sec) | Rendering: 0.00275 (95%) | DB: 0.00026 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:37:16) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000311) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000145) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00282 (354 reqs/sec) | DB: 0.00071 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000619) CREATE TABLE schema_info (version integer) + SQL (0.000098) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000298) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000613) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000364) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000175) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000244) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000211) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000322) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000233) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000219) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000305) SELECT * FROM posts LIMIT 1 + Post Load (0.000160) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + Post Load (0.000250) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + SQL (0.000222) SELECT count(*) AS count_all FROM posts  + User Load (0.000240) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:39:29) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000138) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00583 (171 reqs/sec) | Rendering: 0.00006 (0%) | DB: 0.00518 (88%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000268) SELECT count(*) AS count_all FROM posts  + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000170) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:39:29) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00219 (456 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00155 (70%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000192) SELECT count(*) AS count_all FROM posts  + Post Load (0.000239) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000368) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00718 (139 reqs/sec) | Rendering: 0.00552 (76%) | DB: 0.00153 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000229) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000251) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00292 (342 reqs/sec) | Rendering: 0.00009 (2%) | DB: 0.00101 (34%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000336) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00549 (182 reqs/sec) | Rendering: 0.00389 (70%) | DB: 0.00137 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00249 (400 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00099 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000346) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00455 (219 reqs/sec) | Rendering: 0.00263 (57%) | DB: 0.00135 (29%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00371 (269 reqs/sec) | Rendering: 0.00285 (76%) | DB: 0.00076 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:39:29) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000110) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00357 (279 reqs/sec) | DB: 0.00128 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000279) SELECT * FROM users LIMIT 1 + User Load (0.000278) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000242) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:39:29) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000173) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00379 (263 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00354 (93%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000262) SELECT count(*) AS count_all FROM users  + User Load (0.000278) SELECT * FROM users LIMIT 1 + SQL (0.000217) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:39:29) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000341) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000153)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00205 (488 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00125 (61%) | 200 OK [http://test.host/users/1] + SQL (0.000221) SELECT count(*) AS count_all FROM users  + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00516 (193 reqs/sec) | Rendering: 0.00444 (85%) | DB: 0.00078 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000266) SELECT * FROM users  +Completed in 0.00202 (495 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00054 (26%) | 200 OK [http://test.host/users] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000418) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.08714 (11 reqs/sec) | Rendering: 0.08594 (98%) | DB: 0.00069 (0%) | 200 OK [http://test.host/users] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000366) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00218 (458 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00063 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00290 (345 reqs/sec) | Rendering: 0.00182 (62%) | DB: 0.00059 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:39:29) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00266 (376 reqs/sec) | Rendering: 0.00252 (94%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000307) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:39:29) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000121) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00259 (386 reqs/sec) | DB: 0.00074 (28%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000609) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000238) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000205) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000225) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000256) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000218) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 3 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000207) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + Post Load (0.000173) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000286) SELECT * FROM posts LIMIT 1 + Post Load (0.000323) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + User Load (0.000275) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:40:23) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000159) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000106) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00557 (179 reqs/sec) | DB: 0.00557 (100%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000234) SELECT count(*) AS count_all FROM posts  + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:40:23) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00219 (456 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00155 (70%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + Post Load (0.000296) SELECT * FROM posts LIMIT 1 + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000188) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:40:23) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000358) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000102)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00278 (359 reqs/sec) | DB: 0.00171 (61%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000221) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000272) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00668 (149 reqs/sec) | Rendering: 0.00485 (72%) | DB: 0.00164 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000412) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000290) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00318 (314 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00120 (37%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000347) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00551 (181 reqs/sec) | Rendering: 0.00390 (70%) | DB: 0.00138 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00247 (405 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00100 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00447 (223 reqs/sec) | Rendering: 0.00258 (57%) | DB: 0.00136 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000301) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00289 (77%) | DB: 0.00084 (22%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000276) SELECT * FROM posts LIMIT 1 + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:40:23) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000314) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000289) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000152) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000115) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00393 (254 reqs/sec) | DB: 0.00143 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:40:23) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000116) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00363 (275 reqs/sec) | DB: 0.00151 (41%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000157) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000281) SELECT * FROM users LIMIT 1 + User Update (0.000124) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000275) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000379) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Update (0.000168) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000272) SELECT * FROM users LIMIT 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + SQL (0.000207) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:40:23) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000122) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00357 (280 reqs/sec) | DB: 0.00411 (114%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000243) SELECT count(*) AS count_all FROM users  + User Load (0.000282) SELECT * FROM users LIMIT 1 + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:40:23) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000094)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00166 (601 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00111 (66%) | 200 OK [http://test.host/users/1] + SQL (0.000214) SELECT count(*) AS count_all FROM users  + User Load (0.000307) SELECT * FROM users LIMIT 1 + SQL (0.000195) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:40:23) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000094)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00189 (529 reqs/sec) | DB: 0.00109 (57%) | 302 Found [http://test.host/users/1] + SQL (0.000272) SELECT count(*) AS count_all FROM users  + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000545) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00505 (197 reqs/sec) | Rendering: 0.00400 (79%) | DB: 0.00110 (21%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000636) SELECT * FROM users  +Completed in 0.00248 (402 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00091 (36%) | 200 OK [http://test.host/users] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000259) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00361 (277 reqs/sec) | Rendering: 0.00279 (77%) | DB: 0.00052 (14%) | 200 OK [http://test.host/users] + User Load (0.000279) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00177 (564 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00057 (32%) | 200 OK [http://test.host/users/1] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00269 (371 reqs/sec) | Rendering: 0.00179 (66%) | DB: 0.00054 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:40:23) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00282 (354 reqs/sec) | Rendering: 0.00263 (93%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:40:23) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000122) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00251 (398 reqs/sec) | DB: 0.00067 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] + User Load (0.000294) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:40:23) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000141) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00285 (350 reqs/sec) | DB: 0.00073 (25%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000624) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000297) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000277) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000236) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000232) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000238) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000339) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000102) UPDATE schema_info SET version = 1 + SQL (0.000201) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000331) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000108) UPDATE schema_info SET version = 2 + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000271) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000185) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000210) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000279) SELECT * FROM posts LIMIT 1 + Post Load (0.000179) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000136) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000139) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + Post Load (0.000344) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + SQL (0.000209) SELECT count(*) AS count_all FROM posts  + User Load (0.000266) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:45:24) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000182) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000118) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00582 (171 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00573 (98%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000252) SELECT count(*) AS count_all FROM posts  + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + SQL (0.000174) SELECT count(*) AS count_all FROM posts  + User Load (0.000226) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:45:24) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000106) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00372 (268 reqs/sec) | DB: 0.00164 (44%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000204) SELECT count(*) AS count_all FROM posts  + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000184) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:45:24) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000259) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000104)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00245 (408 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00158 (64%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000232) SELECT count(*) AS count_all FROM posts  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000245) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:45:24) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00254 (393 reqs/sec) | DB: 0.00160 (63%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:45:24) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000282) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000351) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00707 (141 reqs/sec) | Rendering: 0.00526 (74%) | DB: 0.00171 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + User Load (0.000287) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:45:24) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000255) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00291 (343 reqs/sec) | Rendering: 0.00009 (3%) | DB: 0.00110 (37%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:45:24) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000355) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000412) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.01010 (99 reqs/sec) | Rendering: 0.00759 (75%) | DB: 0.00159 (15%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.002254) SELECT * FROM posts LIMIT 1 + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:45:24) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00289 (345 reqs/sec) | Rendering: 0.00012 (4%) | DB: 0.00316 (109%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + User Load (0.000254) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:45:24) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000258) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000317) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00472 (211 reqs/sec) | Rendering: 0.00268 (56%) | DB: 0.00139 (29%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:45:24) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00381 (262 reqs/sec) | Rendering: 0.00296 (77%) | DB: 0.00076 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:45:24) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000117) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00373 (267 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00139 (37%) | 200 OK [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000271) SELECT * FROM posts LIMIT 1 + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:45:24) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000183) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000119) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00443 (225 reqs/sec) | DB: 0.00135 (30%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000325) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000315) SELECT * FROM users LIMIT 1 + User Update (0.000137) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Update (0.000143) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Load (0.000276) SELECT * FROM users LIMIT 1 + User Load (0.000358) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000273) SELECT * FROM users LIMIT 1 + User Update (0.000122) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + SQL (0.000185) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:45:25) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000124) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00387 (258 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00377 (97%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000248) SELECT count(*) AS count_all FROM users  + User Load (0.000249) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:45:25) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000119) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00213 (468 reqs/sec) | DB: 0.00080 (37%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000225) SELECT count(*) AS count_all FROM users  + User Load (0.000238) SELECT * FROM users LIMIT 1 + SQL (0.000207) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:45:25) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000383) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00534 (187 reqs/sec) | Rendering: 0.00006 (1%) | DB: 0.00116 (21%) | 200 OK [http://test.host/users/1] + SQL (0.000280) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:45:25) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000357) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000095)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00219 (457 reqs/sec) | DB: 0.00118 (54%) | 302 Found [http://test.host/users/1] + SQL (0.000255) SELECT count(*) AS count_all FROM users  + User Load (0.000284) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:45:25) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00486 (205 reqs/sec) | Rendering: 0.00405 (83%) | DB: 0.00086 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000264) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:45:25) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users  +Completed in 0.00465 (214 reqs/sec) | Rendering: 0.00009 (2%) | DB: 0.00054 (11%) | 200 OK [http://test.host/users] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:45:25) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000315) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00455 (219 reqs/sec) | Rendering: 0.00351 (77%) | DB: 0.00058 (12%) | 200 OK [http://test.host/users] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:45:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00180 (554 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00054 (29%) | 200 OK [http://test.host/users/1] + User Load (0.000323) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:45:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00301 (332 reqs/sec) | Rendering: 0.00206 (68%) | DB: 0.00061 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000274) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:45:25) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00365 (274 reqs/sec) | Rendering: 0.00350 (96%) | DB: 0.00027 (7%) | 200 OK [http://test.host/users/new] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:45:25) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000126) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Completed in 0.00251 (398 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00067 (26%) | 200 OK [http://test.host/users/1?user=namebobage13emailbob%40bob.com] + User Load (0.000279) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:45:25) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000120) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00276 (361 reqs/sec) | DB: 0.00072 (26%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000604) CREATE TABLE schema_info (version integer) + SQL (0.000097) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000245) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000269) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000235) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000204) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000223) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000323) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000263) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000154) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000213) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + Post Load (0.000144) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000140) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000268) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000238) SELECT * FROM posts LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM posts  + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:45:55) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000157) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00543 (183 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00508 (93%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000229) SELECT count(*) AS count_all FROM posts  + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + SQL (0.000170) SELECT count(*) AS count_all FROM posts  + User Load (0.000222) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:45:55) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000116) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000101) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00359 (278 reqs/sec) | DB: 0.00157 (43%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000205) SELECT count(*) AS count_all FROM posts  + Post Load (0.000294) SELECT * FROM posts LIMIT 1 + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000170) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:45:55) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000352) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000256) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00238 (419 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00165 (69%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000192) SELECT count(*) AS count_all FROM posts  + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000165) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:45:55) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000234) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00245 (408 reqs/sec) | DB: 0.00146 (59%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000214) SELECT count(*) AS count_all FROM posts  + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:45:55) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000376) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00679 (147 reqs/sec) | Rendering: 0.00510 (75%) | DB: 0.00159 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:45:55) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00281 (356 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00100 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:45:55) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000339) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00549 (182 reqs/sec) | Rendering: 0.00388 (70%) | DB: 0.00135 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:45:55) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00246 (407 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00098 (39%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:45:55) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000268) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00457 (218 reqs/sec) | Rendering: 0.00263 (57%) | DB: 0.00133 (29%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:45:56) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00286 (76%) | DB: 0.00077 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:45:56) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000145) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000125) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00380 (263 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00131 (34%) | 200 OK [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: PrettyPrint +Dependencies: New constants: PP + Post Load (0.000282) SELECT * FROM posts LIMIT 1 + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:45:56) [PUT] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title = 'first post' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'first post', "body" = 'blah blah blah', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00358 (279 reqs/sec) | DB: 0.00128 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlefirst+postbodyblah+blah+blah] + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000280) SELECT * FROM users LIMIT 1 + User Update (0.000156) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000265) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000239) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000298) SELECT * FROM users LIMIT 1 + SQL (0.000192) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:45:56) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000137) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00405 (246 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00360 (88%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000266) SELECT count(*) AS count_all FROM users  + User Load (0.000266) SELECT * FROM users LIMIT 1 + SQL (0.000185) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:45:56) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000117) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00210 (475 reqs/sec) | DB: 0.00083 (39%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000217) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:45:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000087)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00152 (659 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00101 (66%) | 200 OK [http://test.host/users/1] + SQL (0.000202) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:45:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000086)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00173 (578 reqs/sec) | DB: 0.00098 (56%) | 302 Found [http://test.host/users/1] + SQL (0.000245) SELECT count(*) AS count_all FROM users  + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:45:56) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00458 (218 reqs/sec) | Rendering: 0.00389 (84%) | DB: 0.00080 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:45:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000265) SELECT * FROM users  +Completed in 0.00195 (513 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00052 (26%) | 200 OK [http://test.host/users] + User Load (0.000247) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:45:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00369 (271 reqs/sec) | Rendering: 0.00283 (76%) | DB: 0.00052 (14%) | 200 OK [http://test.host/users] + User Load (0.000245) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:45:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00173 (576 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00052 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:45:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00271 (369 reqs/sec) | Rendering: 0.00180 (66%) | DB: 0.00053 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000247) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:45:56) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00274 (364 reqs/sec) | Rendering: 0.00258 (94%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000273) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:45:56) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000139) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Completed in 0.00263 (379 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00071 (26%) | 200 OK [http://test.host/users/1?user=namebobage13emailbob%40bob.com] + User Load (0.000364) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:45:56) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000117) UPDATE users SET "email" = 'bob@bob.com', "name" = 'bob', "age" = 13 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00254 (394 reqs/sec) | DB: 0.00079 (30%) | 302 Found [http://test.host/users/1?user=namebobage13emailbob%40bob.com] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000678) CREATE TABLE schema_info (version integer) + SQL (0.000097) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000276) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000971) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000300) UPDATE schema_info SET version = 1 + SQL (0.000893) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000457) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000117) UPDATE schema_info SET version = 2 + SQL (0.000242) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000244) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 3 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000237) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000362) CREATE TABLE schema_info (version integer) + SQL (0.000090) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000273) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000278) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 1 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000244) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000153) UPDATE schema_info SET version = 2 + SQL (0.000379) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000643) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000173) UPDATE schema_info SET version = 3 + SQL (0.000286) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000336) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000100) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + Post Load (0.000195) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + Post Load (0.000262) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000241) SELECT * FROM posts LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM posts  + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:46:53) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000206) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000127) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000378) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00630 (158 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00657 (104%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000251) SELECT count(*) AS count_all FROM posts  + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM posts  + User Load (0.000226) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:46:53) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000119) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000105) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00365 (273 reqs/sec) | DB: 0.00165 (45%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000258) SELECT count(*) AS count_all FROM posts  + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000167) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:46:53) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000088)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00218 (459 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00154 (70%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000172) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:46:53) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000110)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00272 (368 reqs/sec) | DB: 0.00152 (55%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000231) SELECT count(*) AS count_all FROM posts  + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000248) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00651 (153 reqs/sec) | Rendering: 0.00487 (74%) | DB: 0.00153 (23%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000279) SELECT * FROM posts LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000263) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00292 (342 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00110 (37%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000414) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00567 (176 reqs/sec) | Rendering: 0.00401 (70%) | DB: 0.00144 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000269) SELECT * FROM posts LIMIT 1 + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00249 (402 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00102 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000392) SELECT * FROM posts LIMIT 1 + User Load (0.000281) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000254) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000234) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00432 (231 reqs/sec) | Rendering: 0.00251 (58%) | DB: 0.00146 (33%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00402 (248 reqs/sec) | Rendering: 0.00312 (77%) | DB: 0.00082 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:46:53) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00357 (279 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00126 (35%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:46:53) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000255) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000313) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000171) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000122) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00395 (252 reqs/sec) | DB: 0.00136 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000379) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000245) SELECT * FROM users LIMIT 1 + User Update (0.000143) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000304) SELECT * FROM users LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Load (0.000269) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:46:53) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000121) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00375 (266 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00370 (98%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000260) SELECT count(*) AS count_all FROM users  + User Load (0.000265) SELECT * FROM users LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:46:53) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000120) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00213 (468 reqs/sec) | DB: 0.00083 (39%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000226) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:46:53) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000091)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00175 (570 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00109 (62%) | 200 OK [http://test.host/users/1] + SQL (0.000223) SELECT count(*) AS count_all FROM users  + User Load (0.000271) SELECT * FROM users LIMIT 1 + SQL (0.000215) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:46:53) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000095)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00198 (503 reqs/sec) | DB: 0.00111 (55%) | 302 Found [http://test.host/users/1] + SQL (0.000289) SELECT count(*) AS count_all FROM users  + User Load (0.000246) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00491 (203 reqs/sec) | Rendering: 0.00423 (86%) | DB: 0.00082 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000322) SELECT * FROM users  +Completed in 0.00213 (469 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00058 (27%) | 200 OK [http://test.host/users] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000261) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00384 (260 reqs/sec) | Rendering: 0.00299 (77%) | DB: 0.00052 (13%) | 200 OK [http://test.host/users] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00174 (574 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00053 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00271 (368 reqs/sec) | Rendering: 0.00180 (66%) | DB: 0.00056 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000246) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:46:53) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00259 (385 reqs/sec) | Rendering: 0.00247 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:46:53) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000147) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00255 (392 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00069 (27%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000281) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:46:53) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000120) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00243 (411 reqs/sec) | DB: 0.00068 (27%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000799) CREATE TABLE schema_info (version integer) + SQL (0.000102) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000265) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000270) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000238) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000204) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000226) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000449) CREATE TABLE schema_info (version integer) + SQL (0.000100) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000281) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000306) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000213) UPDATE schema_info SET version = 1 + SQL (0.000189) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000241) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000208) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + Post Load (0.000192) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + Post Load (0.000275) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + SQL (0.000194) SELECT count(*) AS count_all FROM posts  + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:47:22) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000164) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000109) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00557 (179 reqs/sec) | Rendering: 0.00006 (1%) | DB: 0.00559 (100%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000260) SELECT count(*) AS count_all FROM posts  + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM posts  + User Load (0.000227) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:47:22) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00388 (257 reqs/sec) | DB: 0.00168 (43%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000212) SELECT count(*) AS count_all FROM posts  + Post Load (0.000333) SELECT * FROM posts LIMIT 1 + User Load (0.001378) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000239) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:47:22) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000314) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000091)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00224 (445 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00281 (125%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000194) SELECT count(*) AS count_all FROM posts  + Post Load (0.000242) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000166) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:47:22) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00251 (399 reqs/sec) | DB: 0.00144 (57%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000255) SELECT count(*) AS count_all FROM posts  + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:47:22) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000405) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00769 (130 reqs/sec) | Rendering: 0.00590 (76%) | DB: 0.00167 (21%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:47:22) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00288 (346 reqs/sec) | Rendering: 0.00009 (2%) | DB: 0.00101 (35%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:47:22) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000428) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000352) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00813 (122 reqs/sec) | Rendering: 0.00636 (78%) | DB: 0.00152 (18%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000292) SELECT * FROM posts LIMIT 1 + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:47:22) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00248 (402 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00105 (42%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000290) SELECT * FROM posts LIMIT 1 + User Load (0.000258) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:47:22) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00448 (223 reqs/sec) | Rendering: 0.00256 (57%) | DB: 0.00138 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000334) SELECT * FROM posts LIMIT 1 + User Load (0.000295) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:47:22) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000316) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00406 (246 reqs/sec) | Rendering: 0.00305 (75%) | DB: 0.00095 (23%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:47:22) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000389) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000264) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000112) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00391 (255 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00143 (36%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000287) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:47:23) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000172) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00392 (254 reqs/sec) | DB: 0.00134 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Update (0.000123) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000293) SELECT * FROM users LIMIT 1 + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + User Update (0.000142) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:47:23) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000141) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00382 (261 reqs/sec) | Rendering: 0.00006 (1%) | DB: 0.00361 (94%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000260) SELECT count(*) AS count_all FROM users  + User Load (0.000264) SELECT * FROM users LIMIT 1 + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:47:23) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000118) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00212 (472 reqs/sec) | DB: 0.00083 (39%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000247) SELECT count(*) AS count_all FROM users  + User Load (0.000282) SELECT * FROM users LIMIT 1 + SQL (0.000194) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:47:23) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000091)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00178 (562 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00109 (61%) | 200 OK [http://test.host/users/1] + SQL (0.000300) SELECT count(*) AS count_all FROM users  + User Load (0.000389) SELECT * FROM users LIMIT 1 + SQL (0.000386) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:47:23) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000318) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000092)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00198 (505 reqs/sec) | DB: 0.00149 (75%) | 302 Found [http://test.host/users/1] + SQL (0.000259) SELECT count(*) AS count_all FROM users  + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:47:23) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00459 (217 reqs/sec) | Rendering: 0.00385 (83%) | DB: 0.00080 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000270) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:47:23) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000590) SELECT * FROM users  +Completed in 0.00276 (362 reqs/sec) | Rendering: 0.00009 (3%) | DB: 0.00086 (31%) | 200 OK [http://test.host/users] + User Load (0.000254) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:47:23) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000261) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00365 (274 reqs/sec) | Rendering: 0.00281 (76%) | DB: 0.00051 (14%) | 200 OK [http://test.host/users] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:47:23) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00201 (498 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00061 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:47:23) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00294 (339 reqs/sec) | Rendering: 0.00202 (68%) | DB: 0.00053 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:47:23) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00289 (346 reqs/sec) | Rendering: 0.00274 (94%) | DB: 0.00027 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000288) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:47:23) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000340) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000128) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00269 (371 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00076 (28%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:47:23) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00240 (416 reqs/sec) | DB: 0.00063 (26%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000595) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000260) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000286) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 1 + SQL (0.000165) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000232) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000222) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000329) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000258) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000613) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000265) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000280) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000240) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000255) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000228) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000328) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000280) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000215) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000217) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000202) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: Error during loading, removing partially loaded constants +Dependencies: removing constant PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000670) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000270) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000280) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000238) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 2 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000218) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000230) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000330) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000243) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000254) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000090) UPDATE schema_info SET version = 2 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000274) SELECT * FROM posts LIMIT 1 + Post Load (0.000190) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000119) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + Post Load (0.000247) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000286) SELECT * FROM posts LIMIT 1 + SQL (0.000416) SELECT count(*) AS count_all FROM posts  + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:49:25) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000155) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000135) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00566 (176 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00541 (95%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000232) SELECT count(*) AS count_all FROM posts  + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000206) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:49:25) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000108)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00219 (457 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00159 (72%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000194) SELECT count(*) AS count_all FROM posts  + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00279 (358 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00118 (42%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000330) SELECT * FROM posts LIMIT 1 + User Load (0.000251) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00252 (396 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00110 (43%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:49:25) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000120) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00353 (283 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00127 (36%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM posts  + User Load (0.000223) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:49:25) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000111) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00369 (270 reqs/sec) | DB: 0.00142 (38%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000209) SELECT count(*) AS count_all FROM posts  + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000206) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:49:25) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000262) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00249 (401 reqs/sec) | DB: 0.00161 (64%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000254) SELECT count(*) AS count_all FROM posts  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000447) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00690 (144 reqs/sec) | Rendering: 0.00505 (73%) | DB: 0.00172 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000257) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000315) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00550 (181 reqs/sec) | Rendering: 0.00393 (71%) | DB: 0.00137 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000268) SELECT * FROM posts LIMIT 1 + User Load (0.000256) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00439 (227 reqs/sec) | Rendering: 0.00254 (57%) | DB: 0.00133 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000293) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00381 (262 reqs/sec) | Rendering: 0.00289 (75%) | DB: 0.00084 (22%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000734) SELECT * FROM posts LIMIT 1 + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:49:25) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000142) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00391 (255 reqs/sec) | DB: 0.00182 (46%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000361) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000111) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000283) SELECT * FROM users LIMIT 1 + SQL (0.000214) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:49:25) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000165) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00398 (251 reqs/sec) | Rendering: 0.00006 (1%) | DB: 0.00359 (90%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000289) SELECT count(*) AS count_all FROM users  + User Load (0.000290) SELECT * FROM users LIMIT 1 + SQL (0.000279) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:49:25) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000092)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00164 (610 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00125 (76%) | 200 OK [http://test.host/users/1] + SQL (0.000208) SELECT count(*) AS count_all FROM users  + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users  +Completed in 0.00203 (492 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00073 (36%) | 200 OK [http://test.host/users] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00177 (565 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00054 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:49:25) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000166) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00278 (360 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00073 (26%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000261) SELECT * FROM users LIMIT 1 + SQL (0.000172) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:49:25) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000111) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00203 (492 reqs/sec) | DB: 0.00054 (26%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000214) SELECT count(*) AS count_all FROM users  + User Load (0.000251) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:49:25) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000089)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00158 (632 reqs/sec) | DB: 0.00100 (63%) | 302 Found [http://test.host/users/1] + SQL (0.000206) SELECT count(*) AS count_all FROM users  + User Load (0.000243) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00453 (220 reqs/sec) | Rendering: 0.00386 (85%) | DB: 0.00072 (15%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000253) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00382 (261 reqs/sec) | Rendering: 0.00293 (76%) | DB: 0.00050 (13%) | 200 OK [http://test.host/users] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00291 (343 reqs/sec) | Rendering: 0.00200 (68%) | DB: 0.00053 (18%) | 200 OK [http://test.host/users/1] + User Load (0.000255) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:49:25) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00261 (383 reqs/sec) | Rendering: 0.00248 (95%) | DB: 0.00025 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000286) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:49:25) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00242 (412 reqs/sec) | DB: 0.00067 (27%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000602) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000258) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000283) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000097) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000236) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000215) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000228) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000337) CREATE TABLE schema_info (version integer) + SQL (0.000087) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000249) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000161) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000258) SELECT * FROM posts LIMIT 1 + Post Load (0.000179) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000137) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000127) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000293) SELECT * FROM posts LIMIT 1 + Post Load (0.000286) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + SQL (0.000201) SELECT count(*) AS count_all FROM posts  + User Load (0.000285) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:49:39) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000302) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000162) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000282) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00555 (180 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00526 (94%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000266) SELECT count(*) AS count_all FROM posts  + Post Load (0.000267) SELECT * FROM posts LIMIT 1 + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000205) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:49:39) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000338) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000089)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00230 (434 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00166 (72%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000194) SELECT count(*) AS count_all FROM posts  + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000227) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000299) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00304 (329 reqs/sec) | Rendering: 0.00011 (3%) | DB: 0.00124 (40%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:49:39) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000239) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000156) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000129) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00375 (266 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00155 (41%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM posts  + User Load (0.000242) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:49:39) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000128) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000262) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00369 (271 reqs/sec) | DB: 0.00144 (39%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000198) SELECT count(*) AS count_all FROM posts  + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000172) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:49:39) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000087)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00231 (432 reqs/sec) | DB: 0.00152 (65%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000272) SELECT count(*) AS count_all FROM posts  + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00660 (151 reqs/sec) | Rendering: 0.00494 (74%) | DB: 0.00164 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000270) SELECT * FROM posts LIMIT 1 + User Load (0.000231) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000319) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000341) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00557 (179 reqs/sec) | Rendering: 0.00391 (70%) | DB: 0.00142 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000299) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000331) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00459 (218 reqs/sec) | Rendering: 0.00250 (54%) | DB: 0.00146 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000325) SELECT * FROM posts LIMIT 1 + User Load (0.000292) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000353) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00801 (124 reqs/sec) | Rendering: 0.00437 (54%) | DB: 0.00097 (12%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:49:39) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.001649) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000323) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000138) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000124) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00752 (133 reqs/sec) | DB: 0.00277 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000254) SELECT * FROM users LIMIT 1 + User Update (0.000144) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Update (0.000116) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Load (0.000271) SELECT * FROM users LIMIT 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:49:39) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000289) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00402 (248 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00373 (92%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000236) SELECT count(*) AS count_all FROM users  + User Load (0.000395) SELECT * FROM users LIMIT 1 + SQL (0.000188) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:49:39) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000096)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00164 (611 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00120 (73%) | 200 OK [http://test.host/users/1] + SQL (0.000223) SELECT count(*) AS count_all FROM users  + User Load (0.000314) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000315) SELECT * FROM users  +Completed in 0.00214 (466 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00085 (39%) | 200 OK [http://test.host/users] + User Load (0.000270) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:49:39) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00242 (412 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00095 (39%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000262) SELECT * FROM users LIMIT 1 + SQL (0.000185) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:49:39) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000126) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00230 (435 reqs/sec) | DB: 0.00057 (24%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000219) SELECT count(*) AS count_all FROM users  + User Load (0.000241) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:49:39) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000089)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00156 (639 reqs/sec) | DB: 0.00099 (63%) | 302 Found [http://test.host/users/1] + SQL (0.000232) SELECT count(*) AS count_all FROM users  + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000550) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00501 (199 reqs/sec) | Rendering: 0.00397 (79%) | DB: 0.00104 (20%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000303) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00379 (263 reqs/sec) | Rendering: 0.00284 (74%) | DB: 0.00057 (14%) | 200 OK [http://test.host/users] + User Load (0.000261) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00184 (66%) | DB: 0.00057 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000247) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:49:39) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00280 (356 reqs/sec) | Rendering: 0.00266 (95%) | DB: 0.00025 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:49:39) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000116) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00241 (414 reqs/sec) | DB: 0.00064 (26%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000718) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000334) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000460) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000124) UPDATE schema_info SET version = 1 + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000313) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 2 + SQL (0.000187) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000218) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000226) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000324) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000244) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000260) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000168) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000220) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000214) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000206) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000288) SELECT * FROM posts LIMIT 1 + Post Load (0.000165) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000120) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000119) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + Post Load (0.000268) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000264) SELECT * FROM posts LIMIT 1 + SQL (0.000204) SELECT count(*) AS count_all FROM posts  + User Load (0.000265) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:49:56) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000160) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000134) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00573 (174 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00521 (90%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000406) SELECT count(*) AS count_all FROM posts  + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000167) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:49:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00219 (457 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00168 (76%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000233) SELECT count(*) AS count_all FROM posts  + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000228) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000266) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00295 (338 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00126 (42%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000251) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00254 (393 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00102 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:49:56) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000356) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000274) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00376 (266 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00137 (36%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM posts  + User Load (0.000223) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:49:56) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000149) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000114) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00393 (254 reqs/sec) | DB: 0.00144 (36%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000265) SELECT count(*) AS count_all FROM posts  + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000169) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:49:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000256) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000107)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00227 (441 reqs/sec) | DB: 0.00157 (69%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000209) SELECT count(*) AS count_all FROM posts  + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000240) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000240) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000372) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00649 (154 reqs/sec) | Rendering: 0.00480 (73%) | DB: 0.00159 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000281) SELECT * FROM posts LIMIT 1 + User Load (0.000233) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000349) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000264) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00558 (179 reqs/sec) | Rendering: 0.00394 (70%) | DB: 0.00140 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000265) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000249) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000305) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00428 (233 reqs/sec) | Rendering: 0.00242 (56%) | DB: 0.00132 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000229) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00300 (77%) | DB: 0.00075 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:49:56) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00370 (270 reqs/sec) | DB: 0.00126 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Load (0.000249) SELECT * FROM users LIMIT 1 + User Load (0.000255) SELECT * FROM users LIMIT 1 + User Load (0.000286) SELECT * FROM users LIMIT 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000119) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000185) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:49:56) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000133) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00438 (228 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00352 (80%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000287) SELECT count(*) AS count_all FROM users  + User Load (0.000316) SELECT * FROM users LIMIT 1 + SQL (0.000205) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:49:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000102)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00166 (602 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00121 (72%) | 200 OK [http://test.host/users/1] + SQL (0.000207) SELECT count(*) AS count_all FROM users  + User Load (0.000281) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users  +Completed in 0.00218 (457 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00078 (35%) | 200 OK [http://test.host/users] + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000291) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00178 (562 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00055 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000250) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:49:56) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000142) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00276 (362 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00067 (24%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000262) SELECT * FROM users LIMIT 1 + SQL (0.000175) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:49:56) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000119) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00207 (483 reqs/sec) | DB: 0.00056 (26%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000215) SELECT count(*) AS count_all FROM users  + User Load (0.000257) SELECT * FROM users LIMIT 1 + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:49:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000097)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00174 (574 reqs/sec) | DB: 0.00101 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000250) SELECT count(*) AS count_all FROM users  + User Load (0.000259) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00455 (219 reqs/sec) | Rendering: 0.00388 (85%) | DB: 0.00079 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000257) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00361 (277 reqs/sec) | Rendering: 0.00278 (77%) | DB: 0.00051 (14%) | 200 OK [http://test.host/users] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000330) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00292 (342 reqs/sec) | Rendering: 0.00188 (64%) | DB: 0.00060 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:49:56) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00274 (365 reqs/sec) | Rendering: 0.00261 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:49:56) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000120) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00248 (404 reqs/sec) | DB: 0.00066 (26%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000597) CREATE TABLE schema_info (version integer) + SQL (0.000093) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000252) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000268) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000236) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000205) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000212) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000343) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000305) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.001494) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000327) UPDATE schema_info SET version = 1 + SQL (0.000386) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000413) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 2 + SQL (0.000187) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000240) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000216) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.006458) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000280) SELECT * FROM posts LIMIT 1 + Post Load (0.000147) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000145) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000245) SELECT * FROM posts LIMIT 1 + SQL (0.000215) SELECT count(*) AS count_all FROM posts  + User Load (0.000280) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:50:33) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000201) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000163) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00613 (162 reqs/sec) | Rendering: 0.00006 (0%) | DB: 0.01376 (224%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000258) SELECT count(*) AS count_all FROM posts  + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + User Load (0.000242) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000167) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:50:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000112)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00227 (440 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00157 (69%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000235) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:50:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000292) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00285 (350 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00122 (42%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000330) SELECT * FROM posts LIMIT 1 + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:50:33) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000324) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00285 (351 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00121 (42%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:50:33) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000326) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000132) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000122) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00387 (258 reqs/sec) | Rendering: 0.00006 (1%) | DB: 0.00133 (34%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + SQL (0.000185) SELECT count(*) AS count_all FROM posts  + User Load (0.000230) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:50:33) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000107) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00402 (249 reqs/sec) | DB: 0.00148 (36%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000230) SELECT count(*) AS count_all FROM posts  + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:50:33) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000234) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00221 (453 reqs/sec) | DB: 0.00153 (69%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000204) SELECT count(*) AS count_all FROM posts  + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:50:33) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000341) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000424) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.01022 (97 reqs/sec) | Rendering: 0.00834 (81%) | DB: 0.00174 (17%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000261) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:50:33) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000443) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00603 (165 reqs/sec) | Rendering: 0.00424 (70%) | DB: 0.00147 (24%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000421) SELECT * FROM posts LIMIT 1 + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:50:33) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000338) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00457 (218 reqs/sec) | Rendering: 0.00260 (56%) | DB: 0.00156 (34%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:50:33) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00383 (260 reqs/sec) | Rendering: 0.00297 (77%) | DB: 0.00078 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000239) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:50:33) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000365) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000219) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00418 (239 reqs/sec) | DB: 0.00145 (34%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000283) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000302) SELECT * FROM users LIMIT 1 + User Update (0.000163) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000297) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000341) SELECT * FROM users LIMIT 1 + User Load (0.000306) SELECT * FROM users LIMIT 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Load (0.000295) SELECT * FROM users LIMIT 1 + User Load (0.000262) SELECT * FROM users LIMIT 1 + User Load (0.000281) SELECT * FROM users LIMIT 1 + User Update (0.000227) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000281) SELECT * FROM users LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:50:33) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000157) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00474 (211 reqs/sec) | Rendering: 0.00007 (1%) | DB: 0.00403 (85%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000352) SELECT count(*) AS count_all FROM users  + User Load (0.000322) SELECT * FROM users LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:50:34) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000093)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00167 (598 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00127 (76%) | 200 OK [http://test.host/users/1] + SQL (0.000213) SELECT count(*) AS count_all FROM users  + User Load (0.000274) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:50:34) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000340) SELECT * FROM users  +Completed in 0.00252 (397 reqs/sec) | Rendering: 0.00025 (10%) | DB: 0.00083 (32%) | 200 OK [http://test.host/users] + User Load (0.000278) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:50:34) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000320) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00194 (516 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00060 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:50:34) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000131) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00255 (392 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00068 (26%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000266) SELECT * FROM users LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:50:34) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000123) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00475 (210 reqs/sec) | DB: 0.00057 (11%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000310) SELECT count(*) AS count_all FROM users  + User Load (0.000253) SELECT * FROM users LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:50:34) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000097)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00162 (616 reqs/sec) | DB: 0.00112 (68%) | 302 Found [http://test.host/users/1] + SQL (0.000304) SELECT count(*) AS count_all FROM users  + User Load (0.000267) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:50:34) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000310) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00481 (207 reqs/sec) | Rendering: 0.00407 (84%) | DB: 0.00088 (18%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000263) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:50:34) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000285) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00406 (246 reqs/sec) | Rendering: 0.00303 (74%) | DB: 0.00055 (13%) | 200 OK [http://test.host/users] + User Load (0.000335) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:50:34) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000339) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00295 (339 reqs/sec) | Rendering: 0.00188 (63%) | DB: 0.00067 (22%) | 200 OK [http://test.host/users/1] + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:50:34) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00277 (360 reqs/sec) | Rendering: 0.00264 (95%) | DB: 0.00025 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000276) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:50:34) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000315) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000168) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00302 (331 reqs/sec) | DB: 0.00076 (25%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000608) CREATE TABLE schema_info (version integer) + SQL (0.000096) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000170) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000239) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000206) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000233) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000362) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000242) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 1 + SQL (0.000186) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000250) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 2 + SQL (0.000173) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000232) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000176) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000205) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000293) SELECT * FROM posts LIMIT 1 + Post Load (0.000176) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000117) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + Post Load (0.000261) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000283) SELECT * FROM posts LIMIT 1 + SQL (0.000197) SELECT count(*) AS count_all FROM posts  + User Load (0.000305) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:50:48) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000172) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000108) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00584 (171 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00538 (92%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000250) SELECT count(*) AS count_all FROM posts  + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000190) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:50:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000328) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000259) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000106)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00237 (421 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00167 (70%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000195) SELECT count(*) AS count_all FROM posts  + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000253) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00298 (335 reqs/sec) | Rendering: 0.00009 (2%) | DB: 0.00123 (41%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000278) SELECT * FROM posts LIMIT 1 + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000350) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000317) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00286 (350 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00121 (42%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:50:48) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000237) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00345 (290 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00127 (36%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000448) SELECT * FROM posts LIMIT 1 + SQL (0.000210) SELECT count(*) AS count_all FROM posts  + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:50:48) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000102) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00369 (270 reqs/sec) | DB: 0.00163 (44%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000202) SELECT count(*) AS count_all FROM posts  + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000250) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000195) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:50:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000105)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00256 (389 reqs/sec) | DB: 0.00156 (60%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000251) SELECT count(*) AS count_all FROM posts  + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000263) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000375) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00668 (149 reqs/sec) | Rendering: 0.00499 (74%) | DB: 0.00162 (24%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000273) SELECT * FROM posts LIMIT 1 + User Load (0.000293) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000294) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000343) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00556 (179 reqs/sec) | Rendering: 0.00390 (70%) | DB: 0.00146 (26%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000262) SELECT * FROM posts LIMIT 1 + User Load (0.000430) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000306) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000241) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000322) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00443 (225 reqs/sec) | Rendering: 0.00246 (55%) | DB: 0.00156 (35%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000253) SELECT * FROM posts LIMIT 1 + User Load (0.000229) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000369) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00400 (250 reqs/sec) | Rendering: 0.00299 (74%) | DB: 0.00085 (21%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000272) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:50:48) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000113) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00349 (286 reqs/sec) | DB: 0.00125 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000253) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000264) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000258) SELECT * FROM users LIMIT 1 + User Load (0.000398) SELECT * FROM users LIMIT 1 + User Load (0.000256) SELECT * FROM users LIMIT 1 + User Load (0.000243) SELECT * FROM users LIMIT 1 + User Load (0.000241) SELECT * FROM users LIMIT 1 + User Load (0.000307) SELECT * FROM users LIMIT 1 + User Load (0.000266) SELECT * FROM users LIMIT 1 + User Update (0.000114) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + SQL (0.000173) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:50:48) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000124) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00406 (246 reqs/sec) | Rendering: 0.00006 (1%) | DB: 0.00366 (90%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000298) SELECT count(*) AS count_all FROM users  + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:50:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000092)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00161 (621 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00112 (69%) | 200 OK [http://test.host/users/1] + SQL (0.000208) SELECT count(*) AS count_all FROM users  + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000265) SELECT * FROM users  +Completed in 0.00203 (491 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00072 (35%) | 200 OK [http://test.host/users] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000343) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00207 (483 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00062 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:50:48) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000334) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000128) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00258 (386 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00072 (27%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000261) SELECT * FROM users LIMIT 1 + SQL (0.000172) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:50:48) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000115) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00205 (487 reqs/sec) | DB: 0.00055 (26%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000224) SELECT count(*) AS count_all FROM users  + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000200) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:50:48) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000095)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00171 (584 reqs/sec) | DB: 0.00108 (62%) | 302 Found [http://test.host/users/1] + SQL (0.000234) SELECT count(*) AS count_all FROM users  + User Load (0.000252) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000289) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00459 (217 reqs/sec) | Rendering: 0.00389 (84%) | DB: 0.00077 (16%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000253) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000253) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00356 (281 reqs/sec) | Rendering: 0.00274 (77%) | DB: 0.00051 (14%) | 200 OK [http://test.host/users] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00272 (368 reqs/sec) | Rendering: 0.00180 (66%) | DB: 0.00053 (19%) | 200 OK [http://test.host/users/1] + User Load (0.000258) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:50:48) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00285 (350 reqs/sec) | Rendering: 0.00272 (95%) | DB: 0.00026 (9%) | 200 OK [http://test.host/users/new] + User Load (0.000410) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:50:48) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000236) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00474 (211 reqs/sec) | DB: 0.00093 (19%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000602) CREATE TABLE schema_info (version integer) + SQL (0.000101) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000248) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000267) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000247) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000091) UPDATE schema_info SET version = 2 + SQL (0.000180) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000211) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 3 + SQL (0.000171) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000230) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000344) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000239) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000255) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000157) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000221) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 2 + SQL (0.000159) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000221) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000322) SELECT * FROM posts LIMIT 1 + Post Load (0.000162) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000121) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000115) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000243) SELECT * FROM posts LIMIT 1 + Post Load (0.000263) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000257) SELECT * FROM posts LIMIT 1 + SQL (0.000195) SELECT count(*) AS count_all FROM posts  + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:51:57) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000173) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000109) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00577 (173 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00518 (89%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000232) SELECT count(*) AS count_all FROM posts  + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000165) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:51:57) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000273) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000111)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00240 (416 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00155 (64%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000220) SELECT count(*) AS count_all FROM posts  + Post Load (0.000248) SELECT * FROM posts LIMIT 1 + User Load (0.000227) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000254) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00282 (354 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00121 (43%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000369) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000246) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00275 (364 reqs/sec) | Rendering: 0.00007 (2%) | DB: 0.00115 (42%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000284) SELECT * FROM posts LIMIT 1 + User Load (0.000252) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:51:57) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000274) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000236) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000123) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00347 (287 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00128 (36%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + SQL (0.000179) SELECT count(*) AS count_all FROM posts  + User Load (0.000284) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:51:57) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000285) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000130) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000249) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00378 (264 reqs/sec) | DB: 0.00150 (39%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000219) SELECT count(*) AS count_all FROM posts  + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000168) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:51:57) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000259) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000122)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00250 (399 reqs/sec) | DB: 0.00155 (62%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000338) SELECT count(*) AS count_all FROM posts  + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000241) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000278) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000379) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00652 (153 reqs/sec) | Rendering: 0.00482 (73%) | DB: 0.00173 (26%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000363) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000441) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00670 (149 reqs/sec) | Rendering: 0.00486 (72%) | DB: 0.00158 (23%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000288) SELECT * FROM posts LIMIT 1 + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000312) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00435 (229 reqs/sec) | Rendering: 0.00250 (57%) | DB: 0.00137 (31%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000256) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00372 (268 reqs/sec) | Rendering: 0.00286 (76%) | DB: 0.00076 (20%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000375) SELECT * FROM posts LIMIT 1 + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:51:57) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000303) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000243) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000114) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00365 (274 reqs/sec) | DB: 0.00144 (39%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Update (0.000127) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + User Update (0.000110) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000274) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000248) SELECT * FROM users LIMIT 1 + User Load (0.000280) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Update (0.000117) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + SQL (0.000182) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:51:57) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000125) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00380 (263 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00354 (93%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000288) SELECT count(*) AS count_all FROM users  + User Load (0.000280) SELECT * FROM users LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:51:57) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000293) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000093)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00164 (611 reqs/sec) | Rendering: 0.00005 (3%) | DB: 0.00114 (70%) | 200 OK [http://test.host/users/1] + SQL (0.000224) SELECT count(*) AS count_all FROM users  + User Load (0.000298) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000310) SELECT * FROM users  +Completed in 0.00230 (435 reqs/sec) | Rendering: 0.00008 (3%) | DB: 0.00083 (36%) | 200 OK [http://test.host/users] + User Load (0.000257) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00178 (562 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00053 (30%) | 200 OK [http://test.host/users/1] + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:51:57) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000377) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000130) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00271 (369 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00079 (29%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000311) SELECT * FROM users LIMIT 1 + SQL (0.000186) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:51:57) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000112) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00203 (493 reqs/sec) | DB: 0.00061 (30%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000216) SELECT count(*) AS count_all FROM users  + User Load (0.000266) SELECT * FROM users LIMIT 1 + SQL (0.000212) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:51:57) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000276) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000105)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00184 (542 reqs/sec) | DB: 0.00107 (58%) | 302 Found [http://test.host/users/1] + SQL (0.000242) SELECT count(*) AS count_all FROM users  + User Load (0.000246) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00451 (221 reqs/sec) | Rendering: 0.00384 (85%) | DB: 0.00077 (17%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000266) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00357 (279 reqs/sec) | Rendering: 0.00275 (76%) | DB: 0.00053 (14%) | 200 OK [http://test.host/users] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000297) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00272 (367 reqs/sec) | Rendering: 0.00179 (65%) | DB: 0.00057 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000247) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:51:57) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00281 (355 reqs/sec) | Rendering: 0.00268 (95%) | DB: 0.00025 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000272) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:51:57) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000144) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00280 (357 reqs/sec) | DB: 0.00069 (24%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixture, FixtureClassNotFound, Fixtures +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.000604) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000299) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000276) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000249) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000095) UPDATE schema_info SET version = 2 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000212) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000167) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000217) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000326) CREATE TABLE schema_info (version integer) + SQL (0.000085) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000241) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000259) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000160) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000217) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000156) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000210) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000309) SELECT * FROM posts LIMIT 1 + Post Load (0.000154) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000131) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000133) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000260) SELECT * FROM posts LIMIT 1 + Post Load (0.000325) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + SQL (0.000191) SELECT count(*) AS count_all FROM posts  + User Load (0.000283) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:52:05) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000210) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000124) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00575 (173 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00528 (91%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000226) SELECT count(*) AS count_all FROM posts  + Post Load (0.000246) SELECT * FROM posts LIMIT 1 + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000169) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:52:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000109)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00219 (457 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00150 (68%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000196) SELECT count(*) AS count_all FROM posts  + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000269) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000304) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00304 (329 reqs/sec) | Rendering: 0.00008 (2%) | DB: 0.00126 (41%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000255) SELECT * FROM posts LIMIT 1 + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000277) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00252 (396 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00103 (40%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:52:05) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000266) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000244) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000124) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000111) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00354 (282 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00123 (34%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000354) SELECT * FROM posts LIMIT 1 + SQL (0.000207) SELECT count(*) AS count_all FROM posts  + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-29 16:52:05) [POST] + Session ID: + Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "action"=>"create", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000122) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000105) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000416) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00399 (250 reqs/sec) | DB: 0.00170 (42%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000247) SELECT count(*) AS count_all FROM posts  + Post Load (0.000346) SELECT * FROM posts LIMIT 1 + User Load (0.000427) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000233) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-29 16:52:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000300) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000245) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000118)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00242 (414 reqs/sec) | DB: 0.00192 (79%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + Post Load (0.000259) SELECT * FROM posts LIMIT 1 + User Load (0.000286) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000313) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000251) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000381) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00668 (149 reqs/sec) | Rendering: 0.00486 (72%) | DB: 0.00171 (25%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000254) SELECT * FROM posts LIMIT 1 + User Load (0.000236) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000380) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000379) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00599 (166 reqs/sec) | Rendering: 0.00425 (70%) | DB: 0.00151 (25%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + User Load (0.000243) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000307) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000296) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000387) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00483 (206 reqs/sec) | Rendering: 0.00268 (55%) | DB: 0.00150 (30%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000249) SELECT * FROM posts LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000259) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00372 (269 reqs/sec) | Rendering: 0.00288 (77%) | DB: 0.00074 (19%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000252) SELECT * FROM posts LIMIT 1 + User Load (0.000246) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-29 16:52:05) [PUT] + Session ID: + Parameters: {"post"=>{"title"=>"changed"}, "action"=>"update", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000260) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000238) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000125) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000119) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00354 (282 reqs/sec) | DB: 0.00124 (35%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000252) SELECT * FROM users LIMIT 1 + User Update (0.000121) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000244) SELECT * FROM users LIMIT 1 + User Update (0.000113) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000257) SELECT * FROM users LIMIT 1 + User Load (0.000246) SELECT * FROM users LIMIT 1 + User Load (0.000302) SELECT * FROM users LIMIT 1 + User Load (0.000260) SELECT * FROM users LIMIT 1 + User Load (0.000327) SELECT * FROM users LIMIT 1 + User Load (0.000263) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Update (0.000115) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000267) SELECT * FROM users LIMIT 1 + SQL (0.000193) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:52:05) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000124) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00368 (271 reqs/sec) | Rendering: 0.00006 (1%) | DB: 0.00361 (97%) | 201 Created [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000309) SELECT count(*) AS count_all FROM users  + User Load (0.000260) SELECT * FROM users LIMIT 1 + SQL (0.000183) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:52:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000336) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000095)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00176 (567 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00118 (67%) | 200 OK [http://test.host/users/1] + SQL (0.000208) SELECT count(*) AS count_all FROM users  + User Load (0.000262) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000266) SELECT * FROM users  +Completed in 0.00199 (503 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00074 (37%) | 200 OK [http://test.host/users] + User Load (0.000268) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000360) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00197 (508 reqs/sec) | Rendering: 0.00007 (3%) | DB: 0.00063 (31%) | 200 OK [http://test.host/users/1] + User Load (0.000248) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:52:05) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000295) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000122) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00239 (417 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00066 (27%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000256) SELECT * FROM users LIMIT 1 + SQL (0.000176) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-29 16:52:05) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000114) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00203 (493 reqs/sec) | DB: 0.00055 (26%) | 302 Found [http://test.host/users?user=namebobage13emailbob%40bob.com] + SQL (0.000228) SELECT count(*) AS count_all FROM users  + User Load (0.000246) SELECT * FROM users LIMIT 1 + SQL (0.000196) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-29 16:52:05) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000265) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000097)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00161 (620 reqs/sec) | DB: 0.00103 (64%) | 302 Found [http://test.host/users/1] + SQL (0.000204) SELECT count(*) AS count_all FROM users  + User Load (0.000249) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00486 (205 reqs/sec) | Rendering: 0.00419 (86%) | DB: 0.00073 (14%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000256) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000261) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00370 (270 reqs/sec) | Rendering: 0.00286 (77%) | DB: 0.00052 (13%) | 200 OK [http://test.host/users] + User Load (0.000282) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00273 (365 reqs/sec) | Rendering: 0.00181 (66%) | DB: 0.00057 (20%) | 200 OK [http://test.host/users/1] + User Load (0.000246) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-29 16:52:05) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00278 (359 reqs/sec) | Rendering: 0.00263 (94%) | DB: 0.00025 (8%) | 200 OK [http://test.host/users/new] + User Load (0.000253) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-29 16:52:05) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000270) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000125) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00248 (403 reqs/sec) | DB: 0.00065 (26%) | 302 Found [http://test.host/users/1?user=namesue] +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/controllers/application.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application +Dependencies: called load_file("test/unit/../rails_root/config/../app/controllers/application.rb", ["Application", "ApplicationController", "Controllers::Application"]) +Dependencies: called new_constants_in(:Object, :Object, "Controllers") +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/application_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/application_helper.rb", ["Helpers::ApplicationHelper", "ApplicationHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: ApplicationHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/application_helper.rb defined ApplicationHelper +Dependencies: called require_or_load("application_api", nil) +Dependencies: loading application_api +Dependencies: called load_file("application_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: ApplicationController +Dependencies: loading test/unit/../rails_root/config/../app/controllers/application.rb defined ApplicationController +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: OptionParser +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CSV +Dependencies: New constants: Fixtures, Fixture, FixtureClassNotFound +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: Tempfile +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Dispatcher +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Exception2MessageMapper +Dependencies: called new_constants_in(Object) +Dependencies: New constants: IRB +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: SLex +Dependencies: called new_constants_in(Object) +Dependencies: New constants: RubyToken +Dependencies: New constants: RubyLex +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: Readline +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: IPAddr +Dependencies: New constants: ACL +Dependencies: New constants: Breakpoint +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SQLite3 +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: SWIG +Dependencies: New constants: + SQL (0.001773) CREATE TABLE schema_info (version integer) + SQL (0.000144) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateUsers +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreatePosts +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTaggings +Dependencies: called new_constants_in(Object) +Dependencies: New constants: CreateTags + SQL (0.000315) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000345) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000114) UPDATE schema_info SET version = 1 + SQL (0.000206) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000278) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000111) UPDATE schema_info SET version = 2 + SQL (0.000203) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000281) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000111) UPDATE schema_info SET version = 3 + SQL (0.000203) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000249) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000100) UPDATE schema_info SET version = 4 +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/post +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/post.rb", ["Models::Post", "Post"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Post +Dependencies: loading test/unit/../rails_root/config/../app/models/post.rb defined Post +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tagging.rb", ["Models::Tagging", "Tagging"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tagging +Dependencies: loading test/unit/../rails_root/config/../app/models/tagging.rb defined Tagging +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/tag +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/tag.rb", ["Models::Tag", "Tag"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: Tag +Dependencies: loading test/unit/../rails_root/config/../app/models/tag.rb defined Tag +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/models/user +Dependencies: called load_file("test/unit/../rails_root/config/../app/models/user.rb", ["Models::User", "User"]) +Dependencies: called new_constants_in("Models", :Object) +Dependencies: New constants: User +Dependencies: loading test/unit/../rails_root/config/../app/models/user.rb defined User +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TagTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: TaggingTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UserTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000352) CREATE TABLE schema_info (version integer) + SQL (0.000086) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: + SQL (0.000227) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000268) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 1 + SQL (0.000172) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000237) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000084) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000216) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000155) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000223) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/posts_helper.rb", ["Helpers::PostsHelper", "PostsHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: PostsHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/posts_helper.rb defined PostsHelper +Dependencies: called require_or_load("posts_api", nil) +Dependencies: loading posts_api +Dependencies: called load_file("posts_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: PostsController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: PostsControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/helpers/users_helper.rb", nil) +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper +Dependencies: called load_file("test/unit/../rails_root/config/../app/helpers/users_helper.rb", ["Helpers::UsersHelper", "UsersHelper"]) +Dependencies: called new_constants_in("Helpers", :Object) +Dependencies: New constants: UsersHelper +Dependencies: loading test/unit/../rails_root/config/../app/helpers/users_helper.rb defined UsersHelper +Dependencies: called require_or_load("users_api", nil) +Dependencies: loading users_api +Dependencies: called load_file("users_api.rb", []) +Dependencies: called new_constants_in() +Dependencies: New constants: +Dependencies: Error during loading, removing partially loaded constants +Dependencies: New constants: UsersController +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/post.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tagging.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/tag.rb", nil) +Dependencies: called require_or_load("test/unit/../rails_root/config/../app/models/user.rb", nil) +Dependencies: New constants: UsersControllerTest +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: +Dependencies: New constants: +Dependencies: called new_constants_in(Object) +Dependencies: New constants: +Dependencies: New constants: + Post Load (0.000294) SELECT * FROM posts LIMIT 1 + Post Load (0.000151) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!' AND posts.id <> 1) LIMIT 1 + Post Load (0.000126) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000119) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 + Post Load (0.000263) SELECT * FROM posts LIMIT 1 + Post Load (0.000281) SELECT * FROM posts WHERE (posts.title = 'My Cute Kitten!') LIMIT 1 + Post Load (0.000247) SELECT * FROM posts LIMIT 1 + SQL (0.000215) SELECT count(*) AS count_all FROM posts  + User Load (0.000236) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-07-14 14:20:56) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "controller"=>"posts", "user_id"=>"1"} + User Load (0.000296) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000109) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000244) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00535 (186 reqs/sec) | Rendering: 0.00005 (0%) | DB: 0.00515 (96%) | 201 Created [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000214) SELECT count(*) AS count_all FROM posts  + Post Load (0.000250) SELECT * FROM posts LIMIT 1 + User Load (0.000287) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000188) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-07-14 14:20:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000235) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000089)  DELETE FROM posts + WHERE "id" = 1 + +Completed in 0.00215 (464 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00155 (71%) | 200 OK [http://test.host/users/1/posts/1] + SQL (0.000193) SELECT count(*) AS count_all FROM posts  + Post Load (0.000234) SELECT * FROM posts LIMIT 1 + User Load (0.000222) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000288) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts.user_id = 1)  +Completed in 0.00265 (377 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00118 (44%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000292) SELECT * FROM posts LIMIT 1 + User Load (0.000337) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000247) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Completed in 0.00238 (419 reqs/sec) | Rendering: 0.00006 (2%) | DB: 0.00115 (48%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000244) SELECT * FROM posts LIMIT 1 + User Load (0.000238) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-07-14 14:20:56) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{"title"=>"changed"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000261) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000232) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000163) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000125) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Completed in 0.00359 (278 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00126 (35%) | 200 OK [http://test.host/users/1/posts/1?post=titlechanged] + Post Load (0.000266) SELECT * FROM posts LIMIT 1 + SQL (0.000178) SELECT count(*) AS count_all FROM posts  + User Load (0.000220) SELECT * FROM users LIMIT 1 + + +Processing PostsController#create (for 0.0.0.0 at 2007-07-14 14:20:56) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "controller"=>"posts", "user_id"=>"1"} + User Load (0.000253) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000129) SELECT * FROM posts WHERE (posts.title = 'first post') LIMIT 1 + SQL (0.000104) INSERT INTO posts ("body", "title", "user_id") VALUES('blah blah blah', 'first post', 1) + User Load (0.000237) SELECT * FROM users WHERE (users."id" = 1)  +Redirected to http://test.host/users/1/posts/2 +Completed in 0.00354 (282 reqs/sec) | DB: 0.00139 (39%) | 302 Found [http://test.host/users/1/posts?post=titlefirst+postbodyblah+blah+blah] + SQL (0.000202) SELECT count(*) AS count_all FROM posts  + Post Load (0.000235) SELECT * FROM posts LIMIT 1 + User Load (0.000230) SELECT * FROM users WHERE (users."id" = 1)  + SQL (0.000166) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-07-14 14:20:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000254) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000230) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Destroy (0.000112)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/users/1/posts +Completed in 0.00218 (459 reqs/sec) | DB: 0.00143 (65%) | 302 Found [http://test.host/users/1/posts/1] + SQL (0.000199) SELECT count(*) AS count_all FROM posts  + Post Load (0.000238) SELECT * FROM posts LIMIT 1 + User Load (0.000234) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000271) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000242) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering within layouts/posts +Rendering posts/edit + User Load (0.000430) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.01042 (95 reqs/sec) | Rendering: 0.00864 (82%) | DB: 0.00161 (15%) | 200 OK [http://test.host/users/1/posts/1;edit] + Post Load (0.000318) SELECT * FROM posts LIMIT 1 + User Load (0.000301) SELECT * FROM users LIMIT 1 + + +Processing PostsController#index (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000361) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/posts +Rendering posts/index + Post Load (0.000428) SELECT * FROM posts WHERE (posts.user_id = 1)  + User Load (0.000342) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00824 (121 reqs/sec) | Rendering: 0.00613 (74%) | DB: 0.00175 (21%) | 200 OK [http://test.host/users/1/posts] + Post Load (0.000324) SELECT * FROM posts LIMIT 1 + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#show (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000335) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000340) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/posts +Rendering posts/show + User Load (0.000400) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00663 (150 reqs/sec) | Rendering: 0.00417 (62%) | DB: 0.00172 (25%) | 200 OK [http://test.host/users/1/posts/1] + Post Load (0.000328) SELECT * FROM posts LIMIT 1 + User Load (0.000295) SELECT * FROM users LIMIT 1 + + +Processing PostsController#new (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000323) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00657 (152 reqs/sec) | Rendering: 0.00552 (83%) | DB: 0.00095 (14%) | 200 OK [http://test.host/users/1/posts/new] + Post Load (0.000330) SELECT * FROM posts LIMIT 1 + User Load (0.000315) SELECT * FROM users WHERE (users."id" = 1)  + + +Processing PostsController#update (for 0.0.0.0 at 2007-07-14 14:20:56) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{"title"=>"changed"}, "id"=>"1", "controller"=>"posts", "user_id"=>"1"} + User Load (0.000321) SELECT * FROM users WHERE (users."id" = 1)  + Post Load (0.000313) SELECT * FROM posts WHERE (posts."id" = 1 AND (posts.user_id = 1))  + Post Load (0.000155) SELECT * FROM posts WHERE (posts.title = 'changed' AND posts.id <> 1) LIMIT 1 + Post Update (0.000154) UPDATE posts SET "title" = 'changed', "body" = 'This is totally a cute kitten', "user_id" = 1 WHERE "id" = 1 +Redirected to http://test.host/users/1/posts/1 +Completed in 0.00438 (228 reqs/sec) | DB: 0.00159 (36%) | 302 Found [http://test.host/users/1/posts/1?post=titlechanged] + User Load (0.000309) SELECT * FROM users WHERE (users."id" = 1)  + User Load (0.000261) SELECT * FROM users LIMIT 1 + User Update (0.000142) UPDATE users SET "email" = 'a@b.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000251) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'asdf@asdf.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000238) SELECT * FROM users LIMIT 1 + User Load (0.000250) SELECT * FROM users LIMIT 1 + User Load (0.000232) SELECT * FROM users LIMIT 1 + User Load (0.000230) SELECT * FROM users LIMIT 1 + User Load (0.000259) SELECT * FROM users LIMIT 1 + User Load (0.000277) SELECT * FROM users LIMIT 1 + User Load (0.000240) SELECT * FROM users LIMIT 1 + User Update (0.000118) UPDATE users SET "email" = 'none@none.com', "name" = 'Some dude', "age" = 2 WHERE "id" = 1 + User Load (0.000247) SELECT * FROM users LIMIT 1 + SQL (0.000177) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-07-14 14:20:56) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000139) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00349 (93%) | 201 Created [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000218) SELECT count(*) AS count_all FROM users  + User Load (0.000236) SELECT * FROM users LIMIT 1 + SQL (0.000227) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-07-14 14:20:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000301) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000089)  DELETE FROM users + WHERE "id" = 1 + +Completed in 0.00154 (650 reqs/sec) | Rendering: 0.00005 (2%) | DB: 0.00107 (69%) | 200 OK [http://test.host/users/1] + SQL (0.000193) SELECT count(*) AS count_all FROM users  + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000315) SELECT * FROM users  +Completed in 0.00194 (514 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00078 (40%) | 200 OK [http://test.host/users] + User Load (0.000251) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  +Completed in 0.00160 (623 reqs/sec) | Rendering: 0.00006 (3%) | DB: 0.00052 (32%) | 200 OK [http://test.host/users/1] + User Load (0.000285) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-07-14 14:20:56) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000345) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000132) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Completed in 0.00264 (379 reqs/sec) | Rendering: 0.00005 (1%) | DB: 0.00076 (28%) | 200 OK [http://test.host/users/1?user=namesue] + User Load (0.000252) SELECT * FROM users LIMIT 1 + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-07-14 14:20:56) [POST] + Session ID: + Parameters: {"user"=>{"name"=>"bob", "age"=>13, "email"=>"bob@bob.com"}, "action"=>"create", "controller"=>"users"} + SQL (0.000116) INSERT INTO users ("name", "age", "email") VALUES('bob', 13, 'bob@bob.com') +Redirected to http://test.host/users/2 +Completed in 0.00210 (476 reqs/sec) | DB: 0.00055 (26%) | 302 Found [http://test.host/users?user=namebobemailbob%40bob.comage13] + SQL (0.000217) SELECT count(*) AS count_all FROM users  + User Load (0.000260) SELECT * FROM users LIMIT 1 + SQL (0.000216) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-07-14 14:20:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000308) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000114)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00177 (564 reqs/sec) | DB: 0.00111 (62%) | 302 Found [http://test.host/users/1] + SQL (0.000255) SELECT count(*) AS count_all FROM users  + User Load (0.000253) SELECT * FROM users LIMIT 1 + + +Processing UsersController#edit (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000280) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00758 (131 reqs/sec) | Rendering: 0.00688 (90%) | DB: 0.00079 (10%) | 200 OK [http://test.host/users/1;edit] + User Load (0.000278) SELECT * FROM users LIMIT 1 + + +Processing UsersController#index (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000314) SELECT * FROM users  +Rendering content_typetext/htmllayoutfalseactionindex within layouts/users +Rendering users/index +Completed in 0.00489 (204 reqs/sec) | Rendering: 0.00392 (80%) | DB: 0.00059 (12%) | 200 OK [http://test.host/users] + User Load (0.000269) SELECT * FROM users LIMIT 1 + + +Processing UsersController#show (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000299) SELECT * FROM users WHERE (users."id" = 1)  +Rendering content_typetext/htmllayoutfalseactionshow within layouts/users +Rendering users/show +Completed in 0.00392 (255 reqs/sec) | Rendering: 0.00291 (74%) | DB: 0.00057 (14%) | 200 OK [http://test.host/users/1] + User Load (0.000271) SELECT * FROM users LIMIT 1 + + +Processing UsersController#new (for 0.0.0.0 at 2007-07-14 14:20:56) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00477 (209 reqs/sec) | Rendering: 0.00461 (96%) | DB: 0.00027 (5%) | 200 OK [http://test.host/users/new] + User Load (0.000330) SELECT * FROM users LIMIT 1 + + +Processing UsersController#update (for 0.0.0.0 at 2007-07-14 14:20:56) [PUT] + Session ID: + Parameters: {"user"=>{"name"=>"sue"}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000338) SELECT * FROM users WHERE (users."id" = 1)  + User Update (0.000151) UPDATE users SET "email" = 'none@none.com', "name" = 'sue', "age" = 2 WHERE "id" = 1 +Redirected to http://test.host/users/1 +Completed in 0.00302 (331 reqs/sec) | DB: 0.00082 (27%) | 302 Found [http://test.host/users/1?user=namesue] diff --git a/test/rails_root/log/test.log b/test/rails_root/log/test.log new file mode 100644 index 00000000..f82cde2a --- /dev/null +++ b/test/rails_root/log/test.log @@ -0,0 +1,950 @@ + SQL (0.079100) CREATE TABLE schema_info (version integer) + SQL (0.000229) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000329) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000323) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000108) UPDATE schema_info SET version = 1 + SQL (0.000201) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000257) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000096) UPDATE schema_info SET version = 2 + SQL (0.000178) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000387) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000134) UPDATE schema_info SET version = 3 + SQL (0.000232) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000355) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000116) UPDATE schema_info SET version = 4 + SQL (0.000344) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-27 15:52:58) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000164) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00789 (126 reqs/sec) | Rendering: 0.00471 (59%) | DB: 0.08255 (1046%) | 200 OK [http://test.host/posts?post=] + SQL (0.000281) SELECT count(*) AS count_all FROM posts  + SQL (0.000262) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-27 15:52:59) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000424) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000120)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00229 (436 reqs/sec) | DB: 0.00109 (47%) | 302 Found [http://test.host/posts/1] + SQL (0.000320) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-27 15:52:59) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000415) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00538 (185 reqs/sec) | Rendering: 0.00442 (82%) | DB: 0.00074 (13%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-27 15:52:59) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000574) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00600 (166 reqs/sec) | Rendering: 0.00458 (76%) | DB: 0.00057 (9%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-27 15:52:59) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00214 (467 reqs/sec) | Rendering: 0.00198 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-27 15:52:59) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000392) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00394 (254 reqs/sec) | Rendering: 0.00268 (68%) | DB: 0.00039 (9%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-27 15:52:59) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000374) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000461) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00600 (166 reqs/sec) | Rendering: 0.00300 (50%) | DB: 0.00084 (13%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000362) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-27 15:52:59) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00821 (121 reqs/sec) | Rendering: 0.00539 (65%) | DB: 0.00036 (4%) | 200 OK [http://test.host/users?user=] + SQL (0.000319) SELECT count(*) AS count_all FROM users  + SQL (0.000285) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-27 15:52:59) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000387) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000120)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00212 (471 reqs/sec) | DB: 0.00111 (52%) | 302 Found [http://test.host/users/1] + SQL (0.000339) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-27 15:52:59) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000410) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00544 (183 reqs/sec) | Rendering: 0.00444 (81%) | DB: 0.00075 (13%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-27 15:52:59) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000482) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00543 (184 reqs/sec) | Rendering: 0.00416 (76%) | DB: 0.00048 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-27 15:52:59) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00204 (489 reqs/sec) | Rendering: 0.00187 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-27 15:52:59) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000340) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00337 (297 reqs/sec) | Rendering: 0.00224 (66%) | DB: 0.00034 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-27 15:52:59) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000379) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00437 (228 reqs/sec) | Rendering: 0.00255 (58%) | DB: 0.00038 (8%) | 200 OK [http://test.host/users/1?user=] + SQL (0.000597) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000265) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000272) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000225) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 2 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000227) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 3 + SQL (0.000162) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000204) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000089) UPDATE schema_info SET version = 4 + SQL (0.000601) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000265) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000231) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 2 + SQL (0.000383) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000292) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000094) UPDATE schema_info SET version = 3 + SQL (0.000186) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000220) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 + SQL (0.000287) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-27 15:53:40) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000152) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00737 (135 reqs/sec) | Rendering: 0.00446 (60%) | DB: 0.00349 (47%) | 200 OK [http://test.host/posts?post=] + SQL (0.000326) SELECT count(*) AS count_all FROM posts  + SQL (0.000216) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-27 15:53:40) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000293) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000093)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00179 (557 reqs/sec) | DB: 0.00093 (51%) | 302 Found [http://test.host/posts/1] + SQL (0.000330) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-27 15:53:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000298) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00415 (240 reqs/sec) | Rendering: 0.00343 (82%) | DB: 0.00063 (15%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-27 15:53:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000389) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00430 (232 reqs/sec) | Rendering: 0.00331 (76%) | DB: 0.00039 (9%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-27 15:53:40) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00165 (605 reqs/sec) | Rendering: 0.00153 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-27 15:53:40) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000297) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00282 (354 reqs/sec) | Rendering: 0.00189 (66%) | DB: 0.00030 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-27 15:53:40) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000314) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000334) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00442 (226 reqs/sec) | Rendering: 0.00216 (48%) | DB: 0.00065 (14%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000202) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-27 15:53:40) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00616 (162 reqs/sec) | Rendering: 0.00391 (63%) | DB: 0.00020 (3%) | 200 OK [http://test.host/users?user=] + SQL (0.000266) SELECT count(*) AS count_all FROM users  + SQL (0.000198) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-27 15:53:40) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000091)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00172 (582 reqs/sec) | DB: 0.00085 (49%) | 302 Found [http://test.host/users/1] + SQL (0.000278) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-27 15:53:40) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000284) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00391 (255 reqs/sec) | Rendering: 0.00321 (81%) | DB: 0.00056 (14%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-27 15:53:40) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000359) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00420 (238 reqs/sec) | Rendering: 0.00323 (76%) | DB: 0.00036 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-27 15:53:40) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00151 (660 reqs/sec) | Rendering: 0.00139 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-27 15:53:40) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000352) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00295 (339 reqs/sec) | Rendering: 0.00179 (60%) | DB: 0.00035 (11%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-27 15:53:40) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000327) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00365 (273 reqs/sec) | Rendering: 0.00216 (59%) | DB: 0.00033 (8%) | 200 OK [http://test.host/users/1?user=] + SQL (0.000602) CREATE TABLE schema_info (version integer) + SQL (0.000094) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000264) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000268) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000163) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000223) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.000164) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000223) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 3 + SQL (0.000158) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000209) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 4 + SQL (0.000616) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000264) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000261) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000169) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000248) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 2 + SQL (0.000381) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000286) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000093) UPDATE schema_info SET version = 3 + SQL (0.000177) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000219) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000086) UPDATE schema_info SET version = 4 + SQL (0.000368) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-27 15:53:56) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000162) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00768 (130 reqs/sec) | Rendering: 0.00471 (61%) | DB: 0.00360 (46%) | 200 OK [http://test.host/posts?post=] + SQL (0.000318) SELECT count(*) AS count_all FROM posts  + SQL (0.000239) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-27 15:53:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000358) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000095)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00201 (497 reqs/sec) | DB: 0.00101 (50%) | 302 Found [http://test.host/posts/1] + SQL (0.000215) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-27 15:53:56) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000382) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00463 (215 reqs/sec) | Rendering: 0.00377 (81%) | DB: 0.00060 (12%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-27 15:53:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000374) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00447 (223 reqs/sec) | Rendering: 0.00348 (77%) | DB: 0.00037 (8%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-27 15:53:56) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00166 (601 reqs/sec) | Rendering: 0.00154 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-27 15:53:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000386) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00314 (318 reqs/sec) | Rendering: 0.00196 (62%) | DB: 0.00039 (12%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-27 15:53:56) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000320) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000339) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00457 (218 reqs/sec) | Rendering: 0.00225 (49%) | DB: 0.00066 (14%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000197) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-27 15:53:56) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00662 (150 reqs/sec) | Rendering: 0.00423 (63%) | DB: 0.00020 (2%) | 200 OK [http://test.host/users?user=] + SQL (0.000275) SELECT count(*) AS count_all FROM users  + SQL (0.000199) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-27 15:53:56) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000267) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000093)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00163 (614 reqs/sec) | DB: 0.00083 (51%) | 302 Found [http://test.host/users/1] + SQL (0.000224) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-27 15:53:56) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000304) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00384 (260 reqs/sec) | Rendering: 0.00313 (81%) | DB: 0.00053 (13%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-27 15:53:56) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000344) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00440 (227 reqs/sec) | Rendering: 0.00346 (78%) | DB: 0.00034 (7%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-27 15:53:56) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00220 (454 reqs/sec) | Rendering: 0.00205 (93%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-27 15:53:56) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000290) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00268 (372 reqs/sec) | Rendering: 0.00175 (65%) | DB: 0.00029 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-27 15:53:56) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000272) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00332 (301 reqs/sec) | Rendering: 0.00200 (60%) | DB: 0.00027 (8%) | 200 OK [http://test.host/users/1?user=] + SQL (0.000655) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000226) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000214) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000193) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000177) CREATE TABLE schema_info (version integer) + SQL (0.000095) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000095) UPDATE schema_info SET version = 1 + SQL (0.000315) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-27 15:57:02) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000170) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00790 (126 reqs/sec) | Rendering: 0.00492 (62%) | DB: 0.00214 (27%) | 200 OK [http://test.host/posts?post=] + SQL (0.000301) SELECT count(*) AS count_all FROM posts  + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-27 15:57:02) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000447) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000114)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00279 (358 reqs/sec) | DB: 0.00108 (38%) | 302 Found [http://test.host/posts/1] + SQL (0.000322) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-27 15:57:02) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000400) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00443 (225 reqs/sec) | Rendering: 0.00352 (79%) | DB: 0.00072 (16%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-27 15:57:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000397) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00453 (220 reqs/sec) | Rendering: 0.00351 (77%) | DB: 0.00040 (8%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-27 15:57:02) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00183 (546 reqs/sec) | Rendering: 0.00165 (90%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-27 15:57:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000307) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00291 (343 reqs/sec) | Rendering: 0.00194 (66%) | DB: 0.00031 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-27 15:57:02) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000347) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000269) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00435 (229 reqs/sec) | Rendering: 0.00214 (49%) | DB: 0.00062 (14%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000181) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-27 15:57:02) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00680 (147 reqs/sec) | Rendering: 0.00436 (64%) | DB: 0.00018 (2%) | 200 OK [http://test.host/users?user=] + SQL (0.000305) SELECT count(*) AS count_all FROM users  + SQL (0.000229) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-27 15:57:02) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000344) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000094)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00207 (483 reqs/sec) | DB: 0.00097 (46%) | 302 Found [http://test.host/users/1] + SQL (0.000226) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-27 15:57:02) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000298) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00430 (232 reqs/sec) | Rendering: 0.00352 (81%) | DB: 0.00052 (12%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-27 15:57:02) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000498) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00448 (223 reqs/sec) | Rendering: 0.00330 (73%) | DB: 0.00050 (11%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-27 15:57:02) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00158 (633 reqs/sec) | Rendering: 0.00144 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-27 15:57:02) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000329) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00288 (347 reqs/sec) | Rendering: 0.00182 (63%) | DB: 0.00033 (11%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-27 15:57:02) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000275) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00329 (303 reqs/sec) | Rendering: 0.00195 (59%) | DB: 0.00027 (8%) | 200 OK [http://test.host/users/1?user=] + SQL (0.000643) CREATE TABLE schema_info (version integer) + SQL (0.000098) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000272) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.000264) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.000088) UPDATE schema_info SET version = 1 + SQL (0.000166) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.000230) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.000087) UPDATE schema_info SET version = 2 + SQL (0.056447) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.000337) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.000092) UPDATE schema_info SET version = 3 + SQL (0.000198) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.000241) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.000085) UPDATE schema_info SET version = 4 + SQL (0.000218) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-27 15:58:36) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000155) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00745 (134 reqs/sec) | Rendering: 0.00448 (60%) | DB: 0.05962 (799%) | 200 OK [http://test.host/posts?post=] + SQL (0.000272) SELECT count(*) AS count_all FROM posts  + SQL (0.000250) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-27 15:58:36) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000367) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000092)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00190 (526 reqs/sec) | DB: 0.00098 (51%) | 302 Found [http://test.host/posts/1] + SQL (0.000245) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-27 15:58:36) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000348) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00454 (220 reqs/sec) | Rendering: 0.00369 (81%) | DB: 0.00059 (13%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-27 15:58:36) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000376) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00433 (230 reqs/sec) | Rendering: 0.00335 (77%) | DB: 0.00038 (8%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-27 15:58:36) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00167 (600 reqs/sec) | Rendering: 0.00154 (92%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-27 15:58:36) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000288) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00191 (67%) | DB: 0.00029 (10%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-27 15:58:36) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000346) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000271) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00428 (233 reqs/sec) | Rendering: 0.00214 (49%) | DB: 0.00062 (14%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000184) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-27 15:58:36) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00608 (164 reqs/sec) | Rendering: 0.00393 (64%) | DB: 0.00018 (3%) | 200 OK [http://test.host/users?user=] + SQL (0.000260) SELECT count(*) AS count_all FROM users  + SQL (0.000215) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-27 15:58:36) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000268) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000090)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00158 (632 reqs/sec) | DB: 0.00083 (52%) | 302 Found [http://test.host/users/1] + SQL (0.000210) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-27 15:58:36) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000376) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00415 (240 reqs/sec) | Rendering: 0.00328 (78%) | DB: 0.00059 (14%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-27 15:58:36) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000379) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00458 (218 reqs/sec) | Rendering: 0.00352 (76%) | DB: 0.00038 (8%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-27 15:58:36) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00185 (539 reqs/sec) | Rendering: 0.00168 (90%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-27 15:58:36) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000273) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00263 (380 reqs/sec) | Rendering: 0.00173 (65%) | DB: 0.00027 (10%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-27 15:58:36) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000279) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00332 (300 reqs/sec) | Rendering: 0.00199 (59%) | DB: 0.00028 (8%) | 200 OK [http://test.host/users/1?user=] + SQL (0.003821) CREATE TABLE schema_info (version integer) + SQL (0.106481) INSERT INTO schema_info (version) VALUES(0) + SQL (0.000000) SQLite3::SQLException: table schema_info already exists: CREATE TABLE schema_info (version integer) + SQL (0.000416) SELECT version FROM schema_info +Migrating to CreateUsers (1) + SQL (0.003526) CREATE TABLE users ("id" INTEGER PRIMARY KEY NOT NULL, "email" varchar(255) DEFAULT NULL, "age" integer DEFAULT NULL)  + SQL (0.003211) UPDATE schema_info SET version = 1 + SQL (0.000470) SELECT version FROM schema_info +Migrating to CreatePosts (2) + SQL (0.003677) CREATE TABLE posts ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "title" varchar(255) DEFAULT NULL, "body" text DEFAULT NULL)  + SQL (0.003985) UPDATE schema_info SET version = 2 + SQL (0.000505) SELECT version FROM schema_info +Migrating to CreateTaggings (3) + SQL (0.004088) CREATE TABLE taggings ("id" INTEGER PRIMARY KEY NOT NULL, "user_id" integer DEFAULT NULL, "tag_id" integer DEFAULT NULL)  + SQL (0.003982) UPDATE schema_info SET version = 3 + SQL (0.000423) SELECT version FROM schema_info +Migrating to CreateTags (4) + SQL (0.003873) CREATE TABLE tags ("id" INTEGER PRIMARY KEY NOT NULL, "name" varchar(255) DEFAULT NULL)  + SQL (0.003629) UPDATE schema_info SET version = 4 + SQL (0.000459) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#create (for 0.0.0.0 at 2007-06-27 16:15:06) [POST] + Session ID: + Parameters: {"action"=>"create", "post"=>{}, "controller"=>"posts"} + Post Load (0.000384) SELECT * FROM posts WHERE (posts.title IS NULL) LIMIT 1 +Rendering actionnewlayoutfalse within layouts/posts +Rendering posts/new +Completed in 0.00991 (100 reqs/sec) | Rendering: 0.00575 (58%) | DB: 0.14293 (1442%) | 200 OK [http://test.host/posts?post=] + SQL (0.000398) SELECT count(*) AS count_all FROM posts  + SQL (0.000442) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#destroy (for 0.0.0.0 at 2007-06-27 16:15:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"posts"} + Post Load (0.000578) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Destroy (0.000481)  DELETE FROM posts + WHERE "id" = 1 + +Redirected to http://test.host/posts +Completed in 0.00576 (173 reqs/sec) | DB: 0.00190 (32%) | 302 Found [http://test.host/posts/1] + SQL (0.000441) SELECT count(*) AS count_all FROM posts  + + +Processing PostsController#edit (for 0.0.0.0 at 2007-06-27 16:15:06) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"posts"} + Post Load (0.000584) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering within layouts/posts +Rendering posts/edit +Completed in 0.00578 (173 reqs/sec) | Rendering: 0.00460 (79%) | DB: 0.00103 (17%) | 200 OK [http://test.host/posts/1;edit] + + +Processing PostsController#index (for 0.0.0.0 at 2007-06-27 16:15:06) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"posts"} + Post Load (0.000643) SELECT * FROM posts  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/index +Completed in 0.00585 (170 reqs/sec) | Rendering: 0.00436 (74%) | DB: 0.00064 (10%) | 200 OK [http://test.host/posts] + + +Processing PostsController#new (for 0.0.0.0 at 2007-06-27 16:15:06) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"posts"} +Rendering within layouts/posts +Rendering posts/new +Completed in 0.00234 (426 reqs/sec) | Rendering: 0.00213 (90%) | DB: 0.00000 (0%) | 200 OK [http://test.host/posts/new] + + +Processing PostsController#show (for 0.0.0.0 at 2007-06-27 16:15:06) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"posts"} + Post Load (0.000627) SELECT * FROM posts WHERE (posts."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/posts +Rendering posts/show +Completed in 0.00411 (243 reqs/sec) | Rendering: 0.00255 (61%) | DB: 0.00063 (15%) | 200 OK [http://test.host/posts/1] + + +Processing PostsController#update (for 0.0.0.0 at 2007-06-27 16:15:06) [PUT] + Session ID: + Parameters: {"action"=>"update", "post"=>{}, "id"=>"1", "controller"=>"posts"} + Post Load (0.000550) SELECT * FROM posts WHERE (posts."id" = 1)  + Post Load (0.000450) SELECT * FROM posts WHERE (posts.title = 'MyString' AND posts.id <> 1) LIMIT 1 +Rendering actioneditlayoutfalse within layouts/posts +Rendering posts/edit +Completed in 0.00587 (170 reqs/sec) | Rendering: 0.00292 (49%) | DB: 0.00100 (17%) | 200 OK [http://test.host/posts/1?post=] + SQL (0.000377) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#create (for 0.0.0.0 at 2007-06-27 16:15:06) [POST] + Session ID: + Parameters: {"user"=>{}, "action"=>"create", "controller"=>"users"} +Rendering actionnewlayoutfalse within layouts/users +Rendering users/new +Completed in 0.00806 (124 reqs/sec) | Rendering: 0.00489 (60%) | DB: 0.00038 (4%) | 200 OK [http://test.host/users?user=] + SQL (0.000360) SELECT count(*) AS count_all FROM users  + SQL (0.000503) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#destroy (for 0.0.0.0 at 2007-06-27 16:15:06) [DELETE] + Session ID: + Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"users"} + User Load (0.000474) SELECT * FROM users WHERE (users."id" = 1)  + User Destroy (0.000466)  DELETE FROM users + WHERE "id" = 1 + +Redirected to http://test.host/users +Completed in 0.00528 (189 reqs/sec) | DB: 0.00180 (34%) | 302 Found [http://test.host/users/1] + SQL (0.000477) SELECT count(*) AS count_all FROM users  + + +Processing UsersController#edit (for 0.0.0.0 at 2007-06-27 16:15:07) [GET] + Session ID: + Parameters: {"action"=>"edit", "id"=>"1", "controller"=>"users"} + User Load (0.000646) SELECT * FROM users WHERE (users."id" = 1)  +Rendering within layouts/users +Rendering users/edit +Completed in 0.00548 (182 reqs/sec) | Rendering: 0.00423 (77%) | DB: 0.00112 (20%) | 200 OK [http://test.host/users/1;edit] + + +Processing UsersController#index (for 0.0.0.0 at 2007-06-27 16:15:07) [GET] + Session ID: + Parameters: {"action"=>"index", "controller"=>"users"} + User Load (0.000596) SELECT * FROM users  +Rendering actionindexcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/index +Completed in 0.00606 (164 reqs/sec) | Rendering: 0.00464 (76%) | DB: 0.00060 (9%) | 200 OK [http://test.host/users] + + +Processing UsersController#new (for 0.0.0.0 at 2007-06-27 16:15:07) [GET] + Session ID: + Parameters: {"action"=>"new", "controller"=>"users"} +Rendering within layouts/users +Rendering users/new +Completed in 0.00208 (480 reqs/sec) | Rendering: 0.00191 (91%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/new] + + +Processing UsersController#show (for 0.0.0.0 at 2007-06-27 16:15:07) [GET] + Session ID: + Parameters: {"action"=>"show", "id"=>"1", "controller"=>"users"} + User Load (0.000636) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actionshowcontent_typetext/htmllayoutfalse within layouts/users +Rendering users/show +Completed in 0.00394 (253 reqs/sec) | Rendering: 0.00237 (60%) | DB: 0.00064 (16%) | 200 OK [http://test.host/users/1] + + +Processing UsersController#update (for 0.0.0.0 at 2007-06-27 16:15:07) [PUT] + Session ID: + Parameters: {"user"=>{}, "action"=>"update", "id"=>"1", "controller"=>"users"} + User Load (0.000600) SELECT * FROM users WHERE (users."id" = 1)  +Rendering actioneditlayoutfalse within layouts/users +Rendering users/edit +Completed in 0.00464 (215 reqs/sec) | Rendering: 0.00256 (55%) | DB: 0.00060 (12%) | 200 OK [http://test.host/users/1?user=] diff --git a/test/rails_root/public/.htaccess b/test/rails_root/public/.htaccess new file mode 100644 index 00000000..d3c99834 --- /dev/null +++ b/test/rails_root/public/.htaccess @@ -0,0 +1,40 @@ +# General Apache options +AddHandler fastcgi-script .fcgi +AddHandler cgi-script .cgi +Options +FollowSymLinks +ExecCGI + +# If you don't want Rails to look in certain directories, +# use the following rewrite rules so that Apache won't rewrite certain requests +# +# Example: +# RewriteCond %{REQUEST_URI} ^/notrails.* +# RewriteRule .* - [L] + +# Redirect all requests not available on the filesystem to Rails +# By default the cgi dispatcher is used which is very slow +# +# For better performance replace the dispatcher with the fastcgi one +# +# Example: +# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L] +RewriteEngine On + +# If your Rails application is accessed via an Alias directive, +# then you MUST also set the RewriteBase in this htaccess file. +# +# Example: +# Alias /myrailsapp /path/to/myrailsapp/public +# RewriteBase /myrailsapp + +RewriteRule ^$ index.html [QSA] +RewriteRule ^([^.]+)$ $1.html [QSA] +RewriteCond %{REQUEST_FILENAME} !-f +RewriteRule ^(.*)$ dispatch.cgi [QSA,L] + +# In case Rails experiences terminal errors +# Instead of displaying this message you can supply a file here which will be rendered instead +# +# Example: +# ErrorDocument 500 /500.html + +ErrorDocument 500 "

Application error

Rails application failed to start properly" \ No newline at end of file diff --git a/test/rails_root/public/404.html b/test/rails_root/public/404.html new file mode 100644 index 00000000..eff660b9 --- /dev/null +++ b/test/rails_root/public/404.html @@ -0,0 +1,30 @@ + + + + + + + The page you were looking for doesn't exist (404) + + + + + +
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+ + \ No newline at end of file diff --git a/test/rails_root/public/500.html b/test/rails_root/public/500.html new file mode 100644 index 00000000..f0aee0e9 --- /dev/null +++ b/test/rails_root/public/500.html @@ -0,0 +1,30 @@ + + + + + + + We're sorry, but something went wrong + + + + + +
+

We're sorry, but something went wrong.

+

We've been notified about this issue and we'll take a look at it shortly.

+
+ + \ No newline at end of file diff --git a/test/rails_root/public/dispatch.cgi b/test/rails_root/public/dispatch.cgi new file mode 100755 index 00000000..a76782ae --- /dev/null +++ b/test/rails_root/public/dispatch.cgi @@ -0,0 +1,10 @@ +#!/opt/local/bin/ruby + +require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT) + +# If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like: +# "/usr/local/lib/ruby/gems/1.8/gems/rails-0.8.0/lib/dispatcher" -- otherwise performance is severely impaired +require "dispatcher" + +ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(dir) } if defined?(Apache::RubyRun) +Dispatcher.dispatch \ No newline at end of file diff --git a/test/rails_root/public/dispatch.fcgi b/test/rails_root/public/dispatch.fcgi new file mode 100755 index 00000000..a5267664 --- /dev/null +++ b/test/rails_root/public/dispatch.fcgi @@ -0,0 +1,24 @@ +#!/opt/local/bin/ruby +# +# You may specify the path to the FastCGI crash log (a log of unhandled +# exceptions which forced the FastCGI instance to exit, great for debugging) +# and the number of requests to process before running garbage collection. +# +# By default, the FastCGI crash log is RAILS_ROOT/log/fastcgi.crash.log +# and the GC period is nil (turned off). A reasonable number of requests +# could range from 10-100 depending on the memory footprint of your app. +# +# Example: +# # Default log path, normal GC behavior. +# RailsFCGIHandler.process! +# +# # Default log path, 50 requests between GC. +# RailsFCGIHandler.process! nil, 50 +# +# # Custom log path, normal GC behavior. +# RailsFCGIHandler.process! '/var/log/myapp_fcgi_crash.log' +# +require File.dirname(__FILE__) + "/../config/environment" +require 'fcgi_handler' + +RailsFCGIHandler.process! diff --git a/test/rails_root/public/dispatch.rb b/test/rails_root/public/dispatch.rb new file mode 100755 index 00000000..a76782ae --- /dev/null +++ b/test/rails_root/public/dispatch.rb @@ -0,0 +1,10 @@ +#!/opt/local/bin/ruby + +require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT) + +# If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like: +# "/usr/local/lib/ruby/gems/1.8/gems/rails-0.8.0/lib/dispatcher" -- otherwise performance is severely impaired +require "dispatcher" + +ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(dir) } if defined?(Apache::RubyRun) +Dispatcher.dispatch \ No newline at end of file diff --git a/test/rails_root/public/favicon.ico b/test/rails_root/public/favicon.ico new file mode 100644 index 00000000..e69de29b diff --git a/test/rails_root/public/images/rails.png b/test/rails_root/public/images/rails.png new file mode 100644 index 00000000..b8441f18 Binary files /dev/null and b/test/rails_root/public/images/rails.png differ diff --git a/test/rails_root/public/index.html b/test/rails_root/public/index.html new file mode 100644 index 00000000..a2daab72 --- /dev/null +++ b/test/rails_root/public/index.html @@ -0,0 +1,277 @@ + + + + + Ruby on Rails: Welcome aboard + + + + + + +
+ + +
+ + + + +
+

Getting started

+

Here’s how to get rolling:

+ +
    +
  1. +

    Create your databases and edit config/database.yml

    +

    Rails needs to know your login and password.

    +
  2. + +
  3. +

    Use script/generate to create your models and controllers

    +

    To see all available options, run it without parameters.

    +
  4. + +
  5. +

    Set up a default route and remove or rename this file

    +

    Routes are setup in config/routes.rb.

    +
  6. +
+
+
+ + +
+ + \ No newline at end of file diff --git a/test/rails_root/public/javascripts/application.js b/test/rails_root/public/javascripts/application.js new file mode 100644 index 00000000..fe457769 --- /dev/null +++ b/test/rails_root/public/javascripts/application.js @@ -0,0 +1,2 @@ +// Place your application-specific JavaScript functions and classes here +// This file is automatically included by javascript_include_tag :defaults diff --git a/test/rails_root/public/javascripts/controls.js b/test/rails_root/public/javascripts/controls.js new file mode 100644 index 00000000..8c273f87 --- /dev/null +++ b/test/rails_root/public/javascripts/controls.js @@ -0,0 +1,833 @@ +// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) +// (c) 2005, 2006 Ivan Krstic (http://blogs.law.harvard.edu/ivan) +// (c) 2005, 2006 Jon Tirsen (http://www.tirsen.com) +// Contributors: +// Richard Livsey +// Rahul Bhargava +// Rob Wills +// +// script.aculo.us is freely distributable under the terms of an MIT-style license. +// For details, see the script.aculo.us web site: http://script.aculo.us/ + +// Autocompleter.Base handles all the autocompletion functionality +// that's independent of the data source for autocompletion. This +// includes drawing the autocompletion menu, observing keyboard +// and mouse events, and similar. +// +// Specific autocompleters need to provide, at the very least, +// a getUpdatedChoices function that will be invoked every time +// the text inside the monitored textbox changes. This method +// should get the text for which to provide autocompletion by +// invoking this.getToken(), NOT by directly accessing +// this.element.value. This is to allow incremental tokenized +// autocompletion. Specific auto-completion logic (AJAX, etc) +// belongs in getUpdatedChoices. +// +// Tokenized incremental autocompletion is enabled automatically +// when an autocompleter is instantiated with the 'tokens' option +// in the options parameter, e.g.: +// new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' }); +// will incrementally autocomplete with a comma as the token. +// Additionally, ',' in the above example can be replaced with +// a token array, e.g. { tokens: [',', '\n'] } which +// enables autocompletion on multiple tokens. This is most +// useful when one of the tokens is \n (a newline), as it +// allows smart autocompletion after linebreaks. + +if(typeof Effect == 'undefined') + throw("controls.js requires including script.aculo.us' effects.js library"); + +var Autocompleter = {} +Autocompleter.Base = function() {}; +Autocompleter.Base.prototype = { + baseInitialize: function(element, update, options) { + this.element = $(element); + this.update = $(update); + this.hasFocus = false; + this.changed = false; + this.active = false; + this.index = 0; + this.entryCount = 0; + + if(this.setOptions) + this.setOptions(options); + else + this.options = options || {}; + + this.options.paramName = this.options.paramName || this.element.name; + this.options.tokens = this.options.tokens || []; + this.options.frequency = this.options.frequency || 0.4; + this.options.minChars = this.options.minChars || 1; + this.options.onShow = this.options.onShow || + function(element, update){ + if(!update.style.position || update.style.position=='absolute') { + update.style.position = 'absolute'; + Position.clone(element, update, { + setHeight: false, + offsetTop: element.offsetHeight + }); + } + Effect.Appear(update,{duration:0.15}); + }; + this.options.onHide = this.options.onHide || + function(element, update){ new Effect.Fade(update,{duration:0.15}) }; + + if(typeof(this.options.tokens) == 'string') + this.options.tokens = new Array(this.options.tokens); + + this.observer = null; + + this.element.setAttribute('autocomplete','off'); + + Element.hide(this.update); + + Event.observe(this.element, "blur", this.onBlur.bindAsEventListener(this)); + Event.observe(this.element, "keypress", this.onKeyPress.bindAsEventListener(this)); + }, + + show: function() { + if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update); + if(!this.iefix && + (navigator.appVersion.indexOf('MSIE')>0) && + (navigator.userAgent.indexOf('Opera')<0) && + (Element.getStyle(this.update, 'position')=='absolute')) { + new Insertion.After(this.update, + ''); + this.iefix = $(this.update.id+'_iefix'); + } + if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50); + }, + + fixIEOverlapping: function() { + Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)}); + this.iefix.style.zIndex = 1; + this.update.style.zIndex = 2; + Element.show(this.iefix); + }, + + hide: function() { + this.stopIndicator(); + if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update); + if(this.iefix) Element.hide(this.iefix); + }, + + startIndicator: function() { + if(this.options.indicator) Element.show(this.options.indicator); + }, + + stopIndicator: function() { + if(this.options.indicator) Element.hide(this.options.indicator); + }, + + onKeyPress: function(event) { + if(this.active) + switch(event.keyCode) { + case Event.KEY_TAB: + case Event.KEY_RETURN: + this.selectEntry(); + Event.stop(event); + case Event.KEY_ESC: + this.hide(); + this.active = false; + Event.stop(event); + return; + case Event.KEY_LEFT: + case Event.KEY_RIGHT: + return; + case Event.KEY_UP: + this.markPrevious(); + this.render(); + if(navigator.appVersion.indexOf('AppleWebKit')>0) Event.stop(event); + return; + case Event.KEY_DOWN: + this.markNext(); + this.render(); + if(navigator.appVersion.indexOf('AppleWebKit')>0) Event.stop(event); + return; + } + else + if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN || + (navigator.appVersion.indexOf('AppleWebKit') > 0 && event.keyCode == 0)) return; + + this.changed = true; + this.hasFocus = true; + + if(this.observer) clearTimeout(this.observer); + this.observer = + setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000); + }, + + activate: function() { + this.changed = false; + this.hasFocus = true; + this.getUpdatedChoices(); + }, + + onHover: function(event) { + var element = Event.findElement(event, 'LI'); + if(this.index != element.autocompleteIndex) + { + this.index = element.autocompleteIndex; + this.render(); + } + Event.stop(event); + }, + + onClick: function(event) { + var element = Event.findElement(event, 'LI'); + this.index = element.autocompleteIndex; + this.selectEntry(); + this.hide(); + }, + + onBlur: function(event) { + // needed to make click events working + setTimeout(this.hide.bind(this), 250); + this.hasFocus = false; + this.active = false; + }, + + render: function() { + if(this.entryCount > 0) { + for (var i = 0; i < this.entryCount; i++) + this.index==i ? + Element.addClassName(this.getEntry(i),"selected") : + Element.removeClassName(this.getEntry(i),"selected"); + + if(this.hasFocus) { + this.show(); + this.active = true; + } + } else { + this.active = false; + this.hide(); + } + }, + + markPrevious: function() { + if(this.index > 0) this.index-- + else this.index = this.entryCount-1; + this.getEntry(this.index).scrollIntoView(true); + }, + + markNext: function() { + if(this.index < this.entryCount-1) this.index++ + else this.index = 0; + this.getEntry(this.index).scrollIntoView(false); + }, + + getEntry: function(index) { + return this.update.firstChild.childNodes[index]; + }, + + getCurrentEntry: function() { + return this.getEntry(this.index); + }, + + selectEntry: function() { + this.active = false; + this.updateElement(this.getCurrentEntry()); + }, + + updateElement: function(selectedElement) { + if (this.options.updateElement) { + this.options.updateElement(selectedElement); + return; + } + var value = ''; + if (this.options.select) { + var nodes = document.getElementsByClassName(this.options.select, selectedElement) || []; + if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select); + } else + value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal'); + + var lastTokenPos = this.findLastToken(); + if (lastTokenPos != -1) { + var newValue = this.element.value.substr(0, lastTokenPos + 1); + var whitespace = this.element.value.substr(lastTokenPos + 1).match(/^\s+/); + if (whitespace) + newValue += whitespace[0]; + this.element.value = newValue + value; + } else { + this.element.value = value; + } + this.element.focus(); + + if (this.options.afterUpdateElement) + this.options.afterUpdateElement(this.element, selectedElement); + }, + + updateChoices: function(choices) { + if(!this.changed && this.hasFocus) { + this.update.innerHTML = choices; + Element.cleanWhitespace(this.update); + Element.cleanWhitespace(this.update.down()); + + if(this.update.firstChild && this.update.down().childNodes) { + this.entryCount = + this.update.down().childNodes.length; + for (var i = 0; i < this.entryCount; i++) { + var entry = this.getEntry(i); + entry.autocompleteIndex = i; + this.addObservers(entry); + } + } else { + this.entryCount = 0; + } + + this.stopIndicator(); + this.index = 0; + + if(this.entryCount==1 && this.options.autoSelect) { + this.selectEntry(); + this.hide(); + } else { + this.render(); + } + } + }, + + addObservers: function(element) { + Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this)); + Event.observe(element, "click", this.onClick.bindAsEventListener(this)); + }, + + onObserverEvent: function() { + this.changed = false; + if(this.getToken().length>=this.options.minChars) { + this.startIndicator(); + this.getUpdatedChoices(); + } else { + this.active = false; + this.hide(); + } + }, + + getToken: function() { + var tokenPos = this.findLastToken(); + if (tokenPos != -1) + var ret = this.element.value.substr(tokenPos + 1).replace(/^\s+/,'').replace(/\s+$/,''); + else + var ret = this.element.value; + + return /\n/.test(ret) ? '' : ret; + }, + + findLastToken: function() { + var lastTokenPos = -1; + + for (var i=0; i lastTokenPos) + lastTokenPos = thisTokenPos; + } + return lastTokenPos; + } +} + +Ajax.Autocompleter = Class.create(); +Object.extend(Object.extend(Ajax.Autocompleter.prototype, Autocompleter.Base.prototype), { + initialize: function(element, update, url, options) { + this.baseInitialize(element, update, options); + this.options.asynchronous = true; + this.options.onComplete = this.onComplete.bind(this); + this.options.defaultParams = this.options.parameters || null; + this.url = url; + }, + + getUpdatedChoices: function() { + entry = encodeURIComponent(this.options.paramName) + '=' + + encodeURIComponent(this.getToken()); + + this.options.parameters = this.options.callback ? + this.options.callback(this.element, entry) : entry; + + if(this.options.defaultParams) + this.options.parameters += '&' + this.options.defaultParams; + + new Ajax.Request(this.url, this.options); + }, + + onComplete: function(request) { + this.updateChoices(request.responseText); + } + +}); + +// The local array autocompleter. Used when you'd prefer to +// inject an array of autocompletion options into the page, rather +// than sending out Ajax queries, which can be quite slow sometimes. +// +// The constructor takes four parameters. The first two are, as usual, +// the id of the monitored textbox, and id of the autocompletion menu. +// The third is the array you want to autocomplete from, and the fourth +// is the options block. +// +// Extra local autocompletion options: +// - choices - How many autocompletion choices to offer +// +// - partialSearch - If false, the autocompleter will match entered +// text only at the beginning of strings in the +// autocomplete array. Defaults to true, which will +// match text at the beginning of any *word* in the +// strings in the autocomplete array. If you want to +// search anywhere in the string, additionally set +// the option fullSearch to true (default: off). +// +// - fullSsearch - Search anywhere in autocomplete array strings. +// +// - partialChars - How many characters to enter before triggering +// a partial match (unlike minChars, which defines +// how many characters are required to do any match +// at all). Defaults to 2. +// +// - ignoreCase - Whether to ignore case when autocompleting. +// Defaults to true. +// +// It's possible to pass in a custom function as the 'selector' +// option, if you prefer to write your own autocompletion logic. +// In that case, the other options above will not apply unless +// you support them. + +Autocompleter.Local = Class.create(); +Autocompleter.Local.prototype = Object.extend(new Autocompleter.Base(), { + initialize: function(element, update, array, options) { + this.baseInitialize(element, update, options); + this.options.array = array; + }, + + getUpdatedChoices: function() { + this.updateChoices(this.options.selector(this)); + }, + + setOptions: function(options) { + this.options = Object.extend({ + choices: 10, + partialSearch: true, + partialChars: 2, + ignoreCase: true, + fullSearch: false, + selector: function(instance) { + var ret = []; // Beginning matches + var partial = []; // Inside matches + var entry = instance.getToken(); + var count = 0; + + for (var i = 0; i < instance.options.array.length && + ret.length < instance.options.choices ; i++) { + + var elem = instance.options.array[i]; + var foundPos = instance.options.ignoreCase ? + elem.toLowerCase().indexOf(entry.toLowerCase()) : + elem.indexOf(entry); + + while (foundPos != -1) { + if (foundPos == 0 && elem.length != entry.length) { + ret.push("
  • " + elem.substr(0, entry.length) + "" + + elem.substr(entry.length) + "
  • "); + break; + } else if (entry.length >= instance.options.partialChars && + instance.options.partialSearch && foundPos != -1) { + if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos-1,1))) { + partial.push("
  • " + elem.substr(0, foundPos) + "" + + elem.substr(foundPos, entry.length) + "" + elem.substr( + foundPos + entry.length) + "
  • "); + break; + } + } + + foundPos = instance.options.ignoreCase ? + elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) : + elem.indexOf(entry, foundPos + 1); + + } + } + if (partial.length) + ret = ret.concat(partial.slice(0, instance.options.choices - ret.length)) + return ""; + } + }, options || {}); + } +}); + +// AJAX in-place editor +// +// see documentation on http://wiki.script.aculo.us/scriptaculous/show/Ajax.InPlaceEditor + +// Use this if you notice weird scrolling problems on some browsers, +// the DOM might be a bit confused when this gets called so do this +// waits 1 ms (with setTimeout) until it does the activation +Field.scrollFreeActivate = function(field) { + setTimeout(function() { + Field.activate(field); + }, 1); +} + +Ajax.InPlaceEditor = Class.create(); +Ajax.InPlaceEditor.defaultHighlightColor = "#FFFF99"; +Ajax.InPlaceEditor.prototype = { + initialize: function(element, url, options) { + this.url = url; + this.element = $(element); + + this.options = Object.extend({ + paramName: "value", + okButton: true, + okText: "ok", + cancelLink: true, + cancelText: "cancel", + savingText: "Saving...", + clickToEditText: "Click to edit", + okText: "ok", + rows: 1, + onComplete: function(transport, element) { + new Effect.Highlight(element, {startcolor: this.options.highlightcolor}); + }, + onFailure: function(transport) { + alert("Error communicating with the server: " + transport.responseText.stripTags()); + }, + callback: function(form) { + return Form.serialize(form); + }, + handleLineBreaks: true, + loadingText: 'Loading...', + savingClassName: 'inplaceeditor-saving', + loadingClassName: 'inplaceeditor-loading', + formClassName: 'inplaceeditor-form', + highlightcolor: Ajax.InPlaceEditor.defaultHighlightColor, + highlightendcolor: "#FFFFFF", + externalControl: null, + submitOnBlur: false, + ajaxOptions: {}, + evalScripts: false + }, options || {}); + + if(!this.options.formId && this.element.id) { + this.options.formId = this.element.id + "-inplaceeditor"; + if ($(this.options.formId)) { + // there's already a form with that name, don't specify an id + this.options.formId = null; + } + } + + if (this.options.externalControl) { + this.options.externalControl = $(this.options.externalControl); + } + + this.originalBackground = Element.getStyle(this.element, 'background-color'); + if (!this.originalBackground) { + this.originalBackground = "transparent"; + } + + this.element.title = this.options.clickToEditText; + + this.onclickListener = this.enterEditMode.bindAsEventListener(this); + this.mouseoverListener = this.enterHover.bindAsEventListener(this); + this.mouseoutListener = this.leaveHover.bindAsEventListener(this); + Event.observe(this.element, 'click', this.onclickListener); + Event.observe(this.element, 'mouseover', this.mouseoverListener); + Event.observe(this.element, 'mouseout', this.mouseoutListener); + if (this.options.externalControl) { + Event.observe(this.options.externalControl, 'click', this.onclickListener); + Event.observe(this.options.externalControl, 'mouseover', this.mouseoverListener); + Event.observe(this.options.externalControl, 'mouseout', this.mouseoutListener); + } + }, + enterEditMode: function(evt) { + if (this.saving) return; + if (this.editing) return; + this.editing = true; + this.onEnterEditMode(); + if (this.options.externalControl) { + Element.hide(this.options.externalControl); + } + Element.hide(this.element); + this.createForm(); + this.element.parentNode.insertBefore(this.form, this.element); + if (!this.options.loadTextURL) Field.scrollFreeActivate(this.editField); + // stop the event to avoid a page refresh in Safari + if (evt) { + Event.stop(evt); + } + return false; + }, + createForm: function() { + this.form = document.createElement("form"); + this.form.id = this.options.formId; + Element.addClassName(this.form, this.options.formClassName) + this.form.onsubmit = this.onSubmit.bind(this); + + this.createEditField(); + + if (this.options.textarea) { + var br = document.createElement("br"); + this.form.appendChild(br); + } + + if (this.options.okButton) { + okButton = document.createElement("input"); + okButton.type = "submit"; + okButton.value = this.options.okText; + okButton.className = 'editor_ok_button'; + this.form.appendChild(okButton); + } + + if (this.options.cancelLink) { + cancelLink = document.createElement("a"); + cancelLink.href = "#"; + cancelLink.appendChild(document.createTextNode(this.options.cancelText)); + cancelLink.onclick = this.onclickCancel.bind(this); + cancelLink.className = 'editor_cancel'; + this.form.appendChild(cancelLink); + } + }, + hasHTMLLineBreaks: function(string) { + if (!this.options.handleLineBreaks) return false; + return string.match(/
    /i); + }, + convertHTMLLineBreaks: function(string) { + return string.replace(/
    /gi, "\n").replace(//gi, "\n").replace(/<\/p>/gi, "\n").replace(/

    /gi, ""); + }, + createEditField: function() { + var text; + if(this.options.loadTextURL) { + text = this.options.loadingText; + } else { + text = this.getText(); + } + + var obj = this; + + if (this.options.rows == 1 && !this.hasHTMLLineBreaks(text)) { + this.options.textarea = false; + var textField = document.createElement("input"); + textField.obj = this; + textField.type = "text"; + textField.name = this.options.paramName; + textField.value = text; + textField.style.backgroundColor = this.options.highlightcolor; + textField.className = 'editor_field'; + var size = this.options.size || this.options.cols || 0; + if (size != 0) textField.size = size; + if (this.options.submitOnBlur) + textField.onblur = this.onSubmit.bind(this); + this.editField = textField; + } else { + this.options.textarea = true; + var textArea = document.createElement("textarea"); + textArea.obj = this; + textArea.name = this.options.paramName; + textArea.value = this.convertHTMLLineBreaks(text); + textArea.rows = this.options.rows; + textArea.cols = this.options.cols || 40; + textArea.className = 'editor_field'; + if (this.options.submitOnBlur) + textArea.onblur = this.onSubmit.bind(this); + this.editField = textArea; + } + + if(this.options.loadTextURL) { + this.loadExternalText(); + } + this.form.appendChild(this.editField); + }, + getText: function() { + return this.element.innerHTML; + }, + loadExternalText: function() { + Element.addClassName(this.form, this.options.loadingClassName); + this.editField.disabled = true; + new Ajax.Request( + this.options.loadTextURL, + Object.extend({ + asynchronous: true, + onComplete: this.onLoadedExternalText.bind(this) + }, this.options.ajaxOptions) + ); + }, + onLoadedExternalText: function(transport) { + Element.removeClassName(this.form, this.options.loadingClassName); + this.editField.disabled = false; + this.editField.value = transport.responseText.stripTags(); + Field.scrollFreeActivate(this.editField); + }, + onclickCancel: function() { + this.onComplete(); + this.leaveEditMode(); + return false; + }, + onFailure: function(transport) { + this.options.onFailure(transport); + if (this.oldInnerHTML) { + this.element.innerHTML = this.oldInnerHTML; + this.oldInnerHTML = null; + } + return false; + }, + onSubmit: function() { + // onLoading resets these so we need to save them away for the Ajax call + var form = this.form; + var value = this.editField.value; + + // do this first, sometimes the ajax call returns before we get a chance to switch on Saving... + // which means this will actually switch on Saving... *after* we've left edit mode causing Saving... + // to be displayed indefinitely + this.onLoading(); + + if (this.options.evalScripts) { + new Ajax.Request( + this.url, Object.extend({ + parameters: this.options.callback(form, value), + onComplete: this.onComplete.bind(this), + onFailure: this.onFailure.bind(this), + asynchronous:true, + evalScripts:true + }, this.options.ajaxOptions)); + } else { + new Ajax.Updater( + { success: this.element, + // don't update on failure (this could be an option) + failure: null }, + this.url, Object.extend({ + parameters: this.options.callback(form, value), + onComplete: this.onComplete.bind(this), + onFailure: this.onFailure.bind(this) + }, this.options.ajaxOptions)); + } + // stop the event to avoid a page refresh in Safari + if (arguments.length > 1) { + Event.stop(arguments[0]); + } + return false; + }, + onLoading: function() { + this.saving = true; + this.removeForm(); + this.leaveHover(); + this.showSaving(); + }, + showSaving: function() { + this.oldInnerHTML = this.element.innerHTML; + this.element.innerHTML = this.options.savingText; + Element.addClassName(this.element, this.options.savingClassName); + this.element.style.backgroundColor = this.originalBackground; + Element.show(this.element); + }, + removeForm: function() { + if(this.form) { + if (this.form.parentNode) Element.remove(this.form); + this.form = null; + } + }, + enterHover: function() { + if (this.saving) return; + this.element.style.backgroundColor = this.options.highlightcolor; + if (this.effect) { + this.effect.cancel(); + } + Element.addClassName(this.element, this.options.hoverClassName) + }, + leaveHover: function() { + if (this.options.backgroundColor) { + this.element.style.backgroundColor = this.oldBackground; + } + Element.removeClassName(this.element, this.options.hoverClassName) + if (this.saving) return; + this.effect = new Effect.Highlight(this.element, { + startcolor: this.options.highlightcolor, + endcolor: this.options.highlightendcolor, + restorecolor: this.originalBackground + }); + }, + leaveEditMode: function() { + Element.removeClassName(this.element, this.options.savingClassName); + this.removeForm(); + this.leaveHover(); + this.element.style.backgroundColor = this.originalBackground; + Element.show(this.element); + if (this.options.externalControl) { + Element.show(this.options.externalControl); + } + this.editing = false; + this.saving = false; + this.oldInnerHTML = null; + this.onLeaveEditMode(); + }, + onComplete: function(transport) { + this.leaveEditMode(); + this.options.onComplete.bind(this)(transport, this.element); + }, + onEnterEditMode: function() {}, + onLeaveEditMode: function() {}, + dispose: function() { + if (this.oldInnerHTML) { + this.element.innerHTML = this.oldInnerHTML; + } + this.leaveEditMode(); + Event.stopObserving(this.element, 'click', this.onclickListener); + Event.stopObserving(this.element, 'mouseover', this.mouseoverListener); + Event.stopObserving(this.element, 'mouseout', this.mouseoutListener); + if (this.options.externalControl) { + Event.stopObserving(this.options.externalControl, 'click', this.onclickListener); + Event.stopObserving(this.options.externalControl, 'mouseover', this.mouseoverListener); + Event.stopObserving(this.options.externalControl, 'mouseout', this.mouseoutListener); + } + } +}; + +Ajax.InPlaceCollectionEditor = Class.create(); +Object.extend(Ajax.InPlaceCollectionEditor.prototype, Ajax.InPlaceEditor.prototype); +Object.extend(Ajax.InPlaceCollectionEditor.prototype, { + createEditField: function() { + if (!this.cached_selectTag) { + var selectTag = document.createElement("select"); + var collection = this.options.collection || []; + var optionTag; + collection.each(function(e,i) { + optionTag = document.createElement("option"); + optionTag.value = (e instanceof Array) ? e[0] : e; + if((typeof this.options.value == 'undefined') && + ((e instanceof Array) ? this.element.innerHTML == e[1] : e == optionTag.value)) optionTag.selected = true; + if(this.options.value==optionTag.value) optionTag.selected = true; + optionTag.appendChild(document.createTextNode((e instanceof Array) ? e[1] : e)); + selectTag.appendChild(optionTag); + }.bind(this)); + this.cached_selectTag = selectTag; + } + + this.editField = this.cached_selectTag; + if(this.options.loadTextURL) this.loadExternalText(); + this.form.appendChild(this.editField); + this.options.callback = function(form, value) { + return "value=" + encodeURIComponent(value); + } + } +}); + +// Delayed observer, like Form.Element.Observer, +// but waits for delay after last key input +// Ideal for live-search fields + +Form.Element.DelayedObserver = Class.create(); +Form.Element.DelayedObserver.prototype = { + initialize: function(element, delay, callback) { + this.delay = delay || 0.5; + this.element = $(element); + this.callback = callback; + this.timer = null; + this.lastValue = $F(this.element); + Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this)); + }, + delayedListener: function(event) { + if(this.lastValue == $F(this.element)) return; + if(this.timer) clearTimeout(this.timer); + this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000); + this.lastValue = $F(this.element); + }, + onTimerEvent: function() { + this.timer = null; + this.callback(this.element, $F(this.element)); + } +}; diff --git a/test/rails_root/public/javascripts/dragdrop.js b/test/rails_root/public/javascripts/dragdrop.js new file mode 100644 index 00000000..c71ddb82 --- /dev/null +++ b/test/rails_root/public/javascripts/dragdrop.js @@ -0,0 +1,942 @@ +// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) +// (c) 2005, 2006 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz) +// +// script.aculo.us is freely distributable under the terms of an MIT-style license. +// For details, see the script.aculo.us web site: http://script.aculo.us/ + +if(typeof Effect == 'undefined') + throw("dragdrop.js requires including script.aculo.us' effects.js library"); + +var Droppables = { + drops: [], + + remove: function(element) { + this.drops = this.drops.reject(function(d) { return d.element==$(element) }); + }, + + add: function(element) { + element = $(element); + var options = Object.extend({ + greedy: true, + hoverclass: null, + tree: false + }, arguments[1] || {}); + + // cache containers + if(options.containment) { + options._containers = []; + var containment = options.containment; + if((typeof containment == 'object') && + (containment.constructor == Array)) { + containment.each( function(c) { options._containers.push($(c)) }); + } else { + options._containers.push($(containment)); + } + } + + if(options.accept) options.accept = [options.accept].flatten(); + + Element.makePositioned(element); // fix IE + options.element = element; + + this.drops.push(options); + }, + + findDeepestChild: function(drops) { + deepest = drops[0]; + + for (i = 1; i < drops.length; ++i) + if (Element.isParent(drops[i].element, deepest.element)) + deepest = drops[i]; + + return deepest; + }, + + isContained: function(element, drop) { + var containmentNode; + if(drop.tree) { + containmentNode = element.treeNode; + } else { + containmentNode = element.parentNode; + } + return drop._containers.detect(function(c) { return containmentNode == c }); + }, + + isAffected: function(point, element, drop) { + return ( + (drop.element!=element) && + ((!drop._containers) || + this.isContained(element, drop)) && + ((!drop.accept) || + (Element.classNames(element).detect( + function(v) { return drop.accept.include(v) } ) )) && + Position.within(drop.element, point[0], point[1]) ); + }, + + deactivate: function(drop) { + if(drop.hoverclass) + Element.removeClassName(drop.element, drop.hoverclass); + this.last_active = null; + }, + + activate: function(drop) { + if(drop.hoverclass) + Element.addClassName(drop.element, drop.hoverclass); + this.last_active = drop; + }, + + show: function(point, element) { + if(!this.drops.length) return; + var affected = []; + + if(this.last_active) this.deactivate(this.last_active); + this.drops.each( function(drop) { + if(Droppables.isAffected(point, element, drop)) + affected.push(drop); + }); + + if(affected.length>0) { + drop = Droppables.findDeepestChild(affected); + Position.within(drop.element, point[0], point[1]); + if(drop.onHover) + drop.onHover(element, drop.element, Position.overlap(drop.overlap, drop.element)); + + Droppables.activate(drop); + } + }, + + fire: function(event, element) { + if(!this.last_active) return; + Position.prepare(); + + if (this.isAffected([Event.pointerX(event), Event.pointerY(event)], element, this.last_active)) + if (this.last_active.onDrop) + this.last_active.onDrop(element, this.last_active.element, event); + }, + + reset: function() { + if(this.last_active) + this.deactivate(this.last_active); + } +} + +var Draggables = { + drags: [], + observers: [], + + register: function(draggable) { + if(this.drags.length == 0) { + this.eventMouseUp = this.endDrag.bindAsEventListener(this); + this.eventMouseMove = this.updateDrag.bindAsEventListener(this); + this.eventKeypress = this.keyPress.bindAsEventListener(this); + + Event.observe(document, "mouseup", this.eventMouseUp); + Event.observe(document, "mousemove", this.eventMouseMove); + Event.observe(document, "keypress", this.eventKeypress); + } + this.drags.push(draggable); + }, + + unregister: function(draggable) { + this.drags = this.drags.reject(function(d) { return d==draggable }); + if(this.drags.length == 0) { + Event.stopObserving(document, "mouseup", this.eventMouseUp); + Event.stopObserving(document, "mousemove", this.eventMouseMove); + Event.stopObserving(document, "keypress", this.eventKeypress); + } + }, + + activate: function(draggable) { + if(draggable.options.delay) { + this._timeout = setTimeout(function() { + Draggables._timeout = null; + window.focus(); + Draggables.activeDraggable = draggable; + }.bind(this), draggable.options.delay); + } else { + window.focus(); // allows keypress events if window isn't currently focused, fails for Safari + this.activeDraggable = draggable; + } + }, + + deactivate: function() { + this.activeDraggable = null; + }, + + updateDrag: function(event) { + if(!this.activeDraggable) return; + var pointer = [Event.pointerX(event), Event.pointerY(event)]; + // Mozilla-based browsers fire successive mousemove events with + // the same coordinates, prevent needless redrawing (moz bug?) + if(this._lastPointer && (this._lastPointer.inspect() == pointer.inspect())) return; + this._lastPointer = pointer; + + this.activeDraggable.updateDrag(event, pointer); + }, + + endDrag: function(event) { + if(this._timeout) { + clearTimeout(this._timeout); + this._timeout = null; + } + if(!this.activeDraggable) return; + this._lastPointer = null; + this.activeDraggable.endDrag(event); + this.activeDraggable = null; + }, + + keyPress: function(event) { + if(this.activeDraggable) + this.activeDraggable.keyPress(event); + }, + + addObserver: function(observer) { + this.observers.push(observer); + this._cacheObserverCallbacks(); + }, + + removeObserver: function(element) { // element instead of observer fixes mem leaks + this.observers = this.observers.reject( function(o) { return o.element==element }); + this._cacheObserverCallbacks(); + }, + + notify: function(eventName, draggable, event) { // 'onStart', 'onEnd', 'onDrag' + if(this[eventName+'Count'] > 0) + this.observers.each( function(o) { + if(o[eventName]) o[eventName](eventName, draggable, event); + }); + if(draggable.options[eventName]) draggable.options[eventName](draggable, event); + }, + + _cacheObserverCallbacks: function() { + ['onStart','onEnd','onDrag'].each( function(eventName) { + Draggables[eventName+'Count'] = Draggables.observers.select( + function(o) { return o[eventName]; } + ).length; + }); + } +} + +/*--------------------------------------------------------------------------*/ + +var Draggable = Class.create(); +Draggable._dragging = {}; + +Draggable.prototype = { + initialize: function(element) { + var defaults = { + handle: false, + reverteffect: function(element, top_offset, left_offset) { + var dur = Math.sqrt(Math.abs(top_offset^2)+Math.abs(left_offset^2))*0.02; + new Effect.Move(element, { x: -left_offset, y: -top_offset, duration: dur, + queue: {scope:'_draggable', position:'end'} + }); + }, + endeffect: function(element) { + var toOpacity = typeof element._opacity == 'number' ? element._opacity : 1.0; + new Effect.Opacity(element, {duration:0.2, from:0.7, to:toOpacity, + queue: {scope:'_draggable', position:'end'}, + afterFinish: function(){ + Draggable._dragging[element] = false + } + }); + }, + zindex: 1000, + revert: false, + scroll: false, + scrollSensitivity: 20, + scrollSpeed: 15, + snap: false, // false, or xy or [x,y] or function(x,y){ return [x,y] } + delay: 0 + }; + + if(!arguments[1] || typeof arguments[1].endeffect == 'undefined') + Object.extend(defaults, { + starteffect: function(element) { + element._opacity = Element.getOpacity(element); + Draggable._dragging[element] = true; + new Effect.Opacity(element, {duration:0.2, from:element._opacity, to:0.7}); + } + }); + + var options = Object.extend(defaults, arguments[1] || {}); + + this.element = $(element); + + if(options.handle && (typeof options.handle == 'string')) + this.handle = this.element.down('.'+options.handle, 0); + + if(!this.handle) this.handle = $(options.handle); + if(!this.handle) this.handle = this.element; + + if(options.scroll && !options.scroll.scrollTo && !options.scroll.outerHTML) { + options.scroll = $(options.scroll); + this._isScrollChild = Element.childOf(this.element, options.scroll); + } + + Element.makePositioned(this.element); // fix IE + + this.delta = this.currentDelta(); + this.options = options; + this.dragging = false; + + this.eventMouseDown = this.initDrag.bindAsEventListener(this); + Event.observe(this.handle, "mousedown", this.eventMouseDown); + + Draggables.register(this); + }, + + destroy: function() { + Event.stopObserving(this.handle, "mousedown", this.eventMouseDown); + Draggables.unregister(this); + }, + + currentDelta: function() { + return([ + parseInt(Element.getStyle(this.element,'left') || '0'), + parseInt(Element.getStyle(this.element,'top') || '0')]); + }, + + initDrag: function(event) { + if(typeof Draggable._dragging[this.element] != 'undefined' && + Draggable._dragging[this.element]) return; + if(Event.isLeftClick(event)) { + // abort on form elements, fixes a Firefox issue + var src = Event.element(event); + if(src.tagName && ( + src.tagName=='INPUT' || + src.tagName=='SELECT' || + src.tagName=='OPTION' || + src.tagName=='BUTTON' || + src.tagName=='TEXTAREA')) return; + + var pointer = [Event.pointerX(event), Event.pointerY(event)]; + var pos = Position.cumulativeOffset(this.element); + this.offset = [0,1].map( function(i) { return (pointer[i] - pos[i]) }); + + Draggables.activate(this); + Event.stop(event); + } + }, + + startDrag: function(event) { + this.dragging = true; + + if(this.options.zindex) { + this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0); + this.element.style.zIndex = this.options.zindex; + } + + if(this.options.ghosting) { + this._clone = this.element.cloneNode(true); + Position.absolutize(this.element); + this.element.parentNode.insertBefore(this._clone, this.element); + } + + if(this.options.scroll) { + if (this.options.scroll == window) { + var where = this._getWindowScroll(this.options.scroll); + this.originalScrollLeft = where.left; + this.originalScrollTop = where.top; + } else { + this.originalScrollLeft = this.options.scroll.scrollLeft; + this.originalScrollTop = this.options.scroll.scrollTop; + } + } + + Draggables.notify('onStart', this, event); + + if(this.options.starteffect) this.options.starteffect(this.element); + }, + + updateDrag: function(event, pointer) { + if(!this.dragging) this.startDrag(event); + Position.prepare(); + Droppables.show(pointer, this.element); + Draggables.notify('onDrag', this, event); + + this.draw(pointer); + if(this.options.change) this.options.change(this); + + if(this.options.scroll) { + this.stopScrolling(); + + var p; + if (this.options.scroll == window) { + with(this._getWindowScroll(this.options.scroll)) { p = [ left, top, left+width, top+height ]; } + } else { + p = Position.page(this.options.scroll); + p[0] += this.options.scroll.scrollLeft + Position.deltaX; + p[1] += this.options.scroll.scrollTop + Position.deltaY; + p.push(p[0]+this.options.scroll.offsetWidth); + p.push(p[1]+this.options.scroll.offsetHeight); + } + var speed = [0,0]; + if(pointer[0] < (p[0]+this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[0]+this.options.scrollSensitivity); + if(pointer[1] < (p[1]+this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[1]+this.options.scrollSensitivity); + if(pointer[0] > (p[2]-this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[2]-this.options.scrollSensitivity); + if(pointer[1] > (p[3]-this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[3]-this.options.scrollSensitivity); + this.startScrolling(speed); + } + + // fix AppleWebKit rendering + if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0); + + Event.stop(event); + }, + + finishDrag: function(event, success) { + this.dragging = false; + + if(this.options.ghosting) { + Position.relativize(this.element); + Element.remove(this._clone); + this._clone = null; + } + + if(success) Droppables.fire(event, this.element); + Draggables.notify('onEnd', this, event); + + var revert = this.options.revert; + if(revert && typeof revert == 'function') revert = revert(this.element); + + var d = this.currentDelta(); + if(revert && this.options.reverteffect) { + this.options.reverteffect(this.element, + d[1]-this.delta[1], d[0]-this.delta[0]); + } else { + this.delta = d; + } + + if(this.options.zindex) + this.element.style.zIndex = this.originalZ; + + if(this.options.endeffect) + this.options.endeffect(this.element); + + Draggables.deactivate(this); + Droppables.reset(); + }, + + keyPress: function(event) { + if(event.keyCode!=Event.KEY_ESC) return; + this.finishDrag(event, false); + Event.stop(event); + }, + + endDrag: function(event) { + if(!this.dragging) return; + this.stopScrolling(); + this.finishDrag(event, true); + Event.stop(event); + }, + + draw: function(point) { + var pos = Position.cumulativeOffset(this.element); + if(this.options.ghosting) { + var r = Position.realOffset(this.element); + pos[0] += r[0] - Position.deltaX; pos[1] += r[1] - Position.deltaY; + } + + var d = this.currentDelta(); + pos[0] -= d[0]; pos[1] -= d[1]; + + if(this.options.scroll && (this.options.scroll != window && this._isScrollChild)) { + pos[0] -= this.options.scroll.scrollLeft-this.originalScrollLeft; + pos[1] -= this.options.scroll.scrollTop-this.originalScrollTop; + } + + var p = [0,1].map(function(i){ + return (point[i]-pos[i]-this.offset[i]) + }.bind(this)); + + if(this.options.snap) { + if(typeof this.options.snap == 'function') { + p = this.options.snap(p[0],p[1],this); + } else { + if(this.options.snap instanceof Array) { + p = p.map( function(v, i) { + return Math.round(v/this.options.snap[i])*this.options.snap[i] }.bind(this)) + } else { + p = p.map( function(v) { + return Math.round(v/this.options.snap)*this.options.snap }.bind(this)) + } + }} + + var style = this.element.style; + if((!this.options.constraint) || (this.options.constraint=='horizontal')) + style.left = p[0] + "px"; + if((!this.options.constraint) || (this.options.constraint=='vertical')) + style.top = p[1] + "px"; + + if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering + }, + + stopScrolling: function() { + if(this.scrollInterval) { + clearInterval(this.scrollInterval); + this.scrollInterval = null; + Draggables._lastScrollPointer = null; + } + }, + + startScrolling: function(speed) { + if(!(speed[0] || speed[1])) return; + this.scrollSpeed = [speed[0]*this.options.scrollSpeed,speed[1]*this.options.scrollSpeed]; + this.lastScrolled = new Date(); + this.scrollInterval = setInterval(this.scroll.bind(this), 10); + }, + + scroll: function() { + var current = new Date(); + var delta = current - this.lastScrolled; + this.lastScrolled = current; + if(this.options.scroll == window) { + with (this._getWindowScroll(this.options.scroll)) { + if (this.scrollSpeed[0] || this.scrollSpeed[1]) { + var d = delta / 1000; + this.options.scroll.scrollTo( left + d*this.scrollSpeed[0], top + d*this.scrollSpeed[1] ); + } + } + } else { + this.options.scroll.scrollLeft += this.scrollSpeed[0] * delta / 1000; + this.options.scroll.scrollTop += this.scrollSpeed[1] * delta / 1000; + } + + Position.prepare(); + Droppables.show(Draggables._lastPointer, this.element); + Draggables.notify('onDrag', this); + if (this._isScrollChild) { + Draggables._lastScrollPointer = Draggables._lastScrollPointer || $A(Draggables._lastPointer); + Draggables._lastScrollPointer[0] += this.scrollSpeed[0] * delta / 1000; + Draggables._lastScrollPointer[1] += this.scrollSpeed[1] * delta / 1000; + if (Draggables._lastScrollPointer[0] < 0) + Draggables._lastScrollPointer[0] = 0; + if (Draggables._lastScrollPointer[1] < 0) + Draggables._lastScrollPointer[1] = 0; + this.draw(Draggables._lastScrollPointer); + } + + if(this.options.change) this.options.change(this); + }, + + _getWindowScroll: function(w) { + var T, L, W, H; + with (w.document) { + if (w.document.documentElement && documentElement.scrollTop) { + T = documentElement.scrollTop; + L = documentElement.scrollLeft; + } else if (w.document.body) { + T = body.scrollTop; + L = body.scrollLeft; + } + if (w.innerWidth) { + W = w.innerWidth; + H = w.innerHeight; + } else if (w.document.documentElement && documentElement.clientWidth) { + W = documentElement.clientWidth; + H = documentElement.clientHeight; + } else { + W = body.offsetWidth; + H = body.offsetHeight + } + } + return { top: T, left: L, width: W, height: H }; + } +} + +/*--------------------------------------------------------------------------*/ + +var SortableObserver = Class.create(); +SortableObserver.prototype = { + initialize: function(element, observer) { + this.element = $(element); + this.observer = observer; + this.lastValue = Sortable.serialize(this.element); + }, + + onStart: function() { + this.lastValue = Sortable.serialize(this.element); + }, + + onEnd: function() { + Sortable.unmark(); + if(this.lastValue != Sortable.serialize(this.element)) + this.observer(this.element) + } +} + +var Sortable = { + SERIALIZE_RULE: /^[^_\-](?:[A-Za-z0-9\-\_]*)[_](.*)$/, + + sortables: {}, + + _findRootElement: function(element) { + while (element.tagName != "BODY") { + if(element.id && Sortable.sortables[element.id]) return element; + element = element.parentNode; + } + }, + + options: function(element) { + element = Sortable._findRootElement($(element)); + if(!element) return; + return Sortable.sortables[element.id]; + }, + + destroy: function(element){ + var s = Sortable.options(element); + + if(s) { + Draggables.removeObserver(s.element); + s.droppables.each(function(d){ Droppables.remove(d) }); + s.draggables.invoke('destroy'); + + delete Sortable.sortables[s.element.id]; + } + }, + + create: function(element) { + element = $(element); + var options = Object.extend({ + element: element, + tag: 'li', // assumes li children, override with tag: 'tagname' + dropOnEmpty: false, + tree: false, + treeTag: 'ul', + overlap: 'vertical', // one of 'vertical', 'horizontal' + constraint: 'vertical', // one of 'vertical', 'horizontal', false + containment: element, // also takes array of elements (or id's); or false + handle: false, // or a CSS class + only: false, + delay: 0, + hoverclass: null, + ghosting: false, + scroll: false, + scrollSensitivity: 20, + scrollSpeed: 15, + format: this.SERIALIZE_RULE, + onChange: Prototype.emptyFunction, + onUpdate: Prototype.emptyFunction + }, arguments[1] || {}); + + // clear any old sortable with same element + this.destroy(element); + + // build options for the draggables + var options_for_draggable = { + revert: true, + scroll: options.scroll, + scrollSpeed: options.scrollSpeed, + scrollSensitivity: options.scrollSensitivity, + delay: options.delay, + ghosting: options.ghosting, + constraint: options.constraint, + handle: options.handle }; + + if(options.starteffect) + options_for_draggable.starteffect = options.starteffect; + + if(options.reverteffect) + options_for_draggable.reverteffect = options.reverteffect; + else + if(options.ghosting) options_for_draggable.reverteffect = function(element) { + element.style.top = 0; + element.style.left = 0; + }; + + if(options.endeffect) + options_for_draggable.endeffect = options.endeffect; + + if(options.zindex) + options_for_draggable.zindex = options.zindex; + + // build options for the droppables + var options_for_droppable = { + overlap: options.overlap, + containment: options.containment, + tree: options.tree, + hoverclass: options.hoverclass, + onHover: Sortable.onHover + } + + var options_for_tree = { + onHover: Sortable.onEmptyHover, + overlap: options.overlap, + containment: options.containment, + hoverclass: options.hoverclass + } + + // fix for gecko engine + Element.cleanWhitespace(element); + + options.draggables = []; + options.droppables = []; + + // drop on empty handling + if(options.dropOnEmpty || options.tree) { + Droppables.add(element, options_for_tree); + options.droppables.push(element); + } + + (this.findElements(element, options) || []).each( function(e) { + // handles are per-draggable + var handle = options.handle ? + $(e).down('.'+options.handle,0) : e; + options.draggables.push( + new Draggable(e, Object.extend(options_for_draggable, { handle: handle }))); + Droppables.add(e, options_for_droppable); + if(options.tree) e.treeNode = element; + options.droppables.push(e); + }); + + if(options.tree) { + (Sortable.findTreeElements(element, options) || []).each( function(e) { + Droppables.add(e, options_for_tree); + e.treeNode = element; + options.droppables.push(e); + }); + } + + // keep reference + this.sortables[element.id] = options; + + // for onupdate + Draggables.addObserver(new SortableObserver(element, options.onUpdate)); + + }, + + // return all suitable-for-sortable elements in a guaranteed order + findElements: function(element, options) { + return Element.findChildren( + element, options.only, options.tree ? true : false, options.tag); + }, + + findTreeElements: function(element, options) { + return Element.findChildren( + element, options.only, options.tree ? true : false, options.treeTag); + }, + + onHover: function(element, dropon, overlap) { + if(Element.isParent(dropon, element)) return; + + if(overlap > .33 && overlap < .66 && Sortable.options(dropon).tree) { + return; + } else if(overlap>0.5) { + Sortable.mark(dropon, 'before'); + if(dropon.previousSibling != element) { + var oldParentNode = element.parentNode; + element.style.visibility = "hidden"; // fix gecko rendering + dropon.parentNode.insertBefore(element, dropon); + if(dropon.parentNode!=oldParentNode) + Sortable.options(oldParentNode).onChange(element); + Sortable.options(dropon.parentNode).onChange(element); + } + } else { + Sortable.mark(dropon, 'after'); + var nextElement = dropon.nextSibling || null; + if(nextElement != element) { + var oldParentNode = element.parentNode; + element.style.visibility = "hidden"; // fix gecko rendering + dropon.parentNode.insertBefore(element, nextElement); + if(dropon.parentNode!=oldParentNode) + Sortable.options(oldParentNode).onChange(element); + Sortable.options(dropon.parentNode).onChange(element); + } + } + }, + + onEmptyHover: function(element, dropon, overlap) { + var oldParentNode = element.parentNode; + var droponOptions = Sortable.options(dropon); + + if(!Element.isParent(dropon, element)) { + var index; + + var children = Sortable.findElements(dropon, {tag: droponOptions.tag, only: droponOptions.only}); + var child = null; + + if(children) { + var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap); + + for (index = 0; index < children.length; index += 1) { + if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) { + offset -= Element.offsetSize (children[index], droponOptions.overlap); + } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) { + child = index + 1 < children.length ? children[index + 1] : null; + break; + } else { + child = children[index]; + break; + } + } + } + + dropon.insertBefore(element, child); + + Sortable.options(oldParentNode).onChange(element); + droponOptions.onChange(element); + } + }, + + unmark: function() { + if(Sortable._marker) Sortable._marker.hide(); + }, + + mark: function(dropon, position) { + // mark on ghosting only + var sortable = Sortable.options(dropon.parentNode); + if(sortable && !sortable.ghosting) return; + + if(!Sortable._marker) { + Sortable._marker = + ($('dropmarker') || Element.extend(document.createElement('DIV'))). + hide().addClassName('dropmarker').setStyle({position:'absolute'}); + document.getElementsByTagName("body").item(0).appendChild(Sortable._marker); + } + var offsets = Position.cumulativeOffset(dropon); + Sortable._marker.setStyle({left: offsets[0]+'px', top: offsets[1] + 'px'}); + + if(position=='after') + if(sortable.overlap == 'horizontal') + Sortable._marker.setStyle({left: (offsets[0]+dropon.clientWidth) + 'px'}); + else + Sortable._marker.setStyle({top: (offsets[1]+dropon.clientHeight) + 'px'}); + + Sortable._marker.show(); + }, + + _tree: function(element, options, parent) { + var children = Sortable.findElements(element, options) || []; + + for (var i = 0; i < children.length; ++i) { + var match = children[i].id.match(options.format); + + if (!match) continue; + + var child = { + id: encodeURIComponent(match ? match[1] : null), + element: element, + parent: parent, + children: [], + position: parent.children.length, + container: $(children[i]).down(options.treeTag) + } + + /* Get the element containing the children and recurse over it */ + if (child.container) + this._tree(child.container, options, child) + + parent.children.push (child); + } + + return parent; + }, + + tree: function(element) { + element = $(element); + var sortableOptions = this.options(element); + var options = Object.extend({ + tag: sortableOptions.tag, + treeTag: sortableOptions.treeTag, + only: sortableOptions.only, + name: element.id, + format: sortableOptions.format + }, arguments[1] || {}); + + var root = { + id: null, + parent: null, + children: [], + container: element, + position: 0 + } + + return Sortable._tree(element, options, root); + }, + + /* Construct a [i] index for a particular node */ + _constructIndex: function(node) { + var index = ''; + do { + if (node.id) index = '[' + node.position + ']' + index; + } while ((node = node.parent) != null); + return index; + }, + + sequence: function(element) { + element = $(element); + var options = Object.extend(this.options(element), arguments[1] || {}); + + return $(this.findElements(element, options) || []).map( function(item) { + return item.id.match(options.format) ? item.id.match(options.format)[1] : ''; + }); + }, + + setSequence: function(element, new_sequence) { + element = $(element); + var options = Object.extend(this.options(element), arguments[2] || {}); + + var nodeMap = {}; + this.findElements(element, options).each( function(n) { + if (n.id.match(options.format)) + nodeMap[n.id.match(options.format)[1]] = [n, n.parentNode]; + n.parentNode.removeChild(n); + }); + + new_sequence.each(function(ident) { + var n = nodeMap[ident]; + if (n) { + n[1].appendChild(n[0]); + delete nodeMap[ident]; + } + }); + }, + + serialize: function(element) { + element = $(element); + var options = Object.extend(Sortable.options(element), arguments[1] || {}); + var name = encodeURIComponent( + (arguments[1] && arguments[1].name) ? arguments[1].name : element.id); + + if (options.tree) { + return Sortable.tree(element, arguments[1]).children.map( function (item) { + return [name + Sortable._constructIndex(item) + "[id]=" + + encodeURIComponent(item.id)].concat(item.children.map(arguments.callee)); + }).flatten().join('&'); + } else { + return Sortable.sequence(element, arguments[1]).map( function(item) { + return name + "[]=" + encodeURIComponent(item); + }).join('&'); + } + } +} + +// Returns true if child is contained within element +Element.isParent = function(child, element) { + if (!child.parentNode || child == element) return false; + if (child.parentNode == element) return true; + return Element.isParent(child.parentNode, element); +} + +Element.findChildren = function(element, only, recursive, tagName) { + if(!element.hasChildNodes()) return null; + tagName = tagName.toUpperCase(); + if(only) only = [only].flatten(); + var elements = []; + $A(element.childNodes).each( function(e) { + if(e.tagName && e.tagName.toUpperCase()==tagName && + (!only || (Element.classNames(e).detect(function(v) { return only.include(v) })))) + elements.push(e); + if(recursive) { + var grandchildren = Element.findChildren(e, only, recursive, tagName); + if(grandchildren) elements.push(grandchildren); + } + }); + + return (elements.length>0 ? elements.flatten() : []); +} + +Element.offsetSize = function (element, type) { + return element['offset' + ((type=='vertical' || type=='height') ? 'Height' : 'Width')]; +} diff --git a/test/rails_root/public/javascripts/effects.js b/test/rails_root/public/javascripts/effects.js new file mode 100644 index 00000000..3b02eda2 --- /dev/null +++ b/test/rails_root/public/javascripts/effects.js @@ -0,0 +1,1088 @@ +// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) +// Contributors: +// Justin Palmer (http://encytemedia.com/) +// Mark Pilgrim (http://diveintomark.org/) +// Martin Bialasinki +// +// script.aculo.us is freely distributable under the terms of an MIT-style license. +// For details, see the script.aculo.us web site: http://script.aculo.us/ + +// converts rgb() and #xxx to #xxxxxx format, +// returns self (or first argument) if not convertable +String.prototype.parseColor = function() { + var color = '#'; + if(this.slice(0,4) == 'rgb(') { + var cols = this.slice(4,this.length-1).split(','); + var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3); + } else { + if(this.slice(0,1) == '#') { + if(this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase(); + if(this.length==7) color = this.toLowerCase(); + } + } + return(color.length==7 ? color : (arguments[0] || this)); +} + +/*--------------------------------------------------------------------------*/ + +Element.collectTextNodes = function(element) { + return $A($(element).childNodes).collect( function(node) { + return (node.nodeType==3 ? node.nodeValue : + (node.hasChildNodes() ? Element.collectTextNodes(node) : '')); + }).flatten().join(''); +} + +Element.collectTextNodesIgnoreClass = function(element, className) { + return $A($(element).childNodes).collect( function(node) { + return (node.nodeType==3 ? node.nodeValue : + ((node.hasChildNodes() && !Element.hasClassName(node,className)) ? + Element.collectTextNodesIgnoreClass(node, className) : '')); + }).flatten().join(''); +} + +Element.setContentZoom = function(element, percent) { + element = $(element); + element.setStyle({fontSize: (percent/100) + 'em'}); + if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0); + return element; +} + +Element.getOpacity = function(element){ + element = $(element); + var opacity; + if (opacity = element.getStyle('opacity')) + return parseFloat(opacity); + if (opacity = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/)) + if(opacity[1]) return parseFloat(opacity[1]) / 100; + return 1.0; +} + +Element.setOpacity = function(element, value){ + element= $(element); + if (value == 1){ + element.setStyle({ opacity: + (/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ? + 0.999999 : 1.0 }); + if(/MSIE/.test(navigator.userAgent) && !window.opera) + element.setStyle({filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')}); + } else { + if(value < 0.00001) value = 0; + element.setStyle({opacity: value}); + if(/MSIE/.test(navigator.userAgent) && !window.opera) + element.setStyle( + { filter: element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'') + + 'alpha(opacity='+value*100+')' }); + } + return element; +} + +Element.getInlineOpacity = function(element){ + return $(element).style.opacity || ''; +} + +Element.forceRerendering = function(element) { + try { + element = $(element); + var n = document.createTextNode(' '); + element.appendChild(n); + element.removeChild(n); + } catch(e) { } +}; + +/*--------------------------------------------------------------------------*/ + +Array.prototype.call = function() { + var args = arguments; + this.each(function(f){ f.apply(this, args) }); +} + +/*--------------------------------------------------------------------------*/ + +var Effect = { + _elementDoesNotExistError: { + name: 'ElementDoesNotExistError', + message: 'The specified DOM element does not exist, but is required for this effect to operate' + }, + tagifyText: function(element) { + if(typeof Builder == 'undefined') + throw("Effect.tagifyText requires including script.aculo.us' builder.js library"); + + var tagifyStyle = 'position:relative'; + if(/MSIE/.test(navigator.userAgent) && !window.opera) tagifyStyle += ';zoom:1'; + + element = $(element); + $A(element.childNodes).each( function(child) { + if(child.nodeType==3) { + child.nodeValue.toArray().each( function(character) { + element.insertBefore( + Builder.node('span',{style: tagifyStyle}, + character == ' ' ? String.fromCharCode(160) : character), + child); + }); + Element.remove(child); + } + }); + }, + multiple: function(element, effect) { + var elements; + if(((typeof element == 'object') || + (typeof element == 'function')) && + (element.length)) + elements = element; + else + elements = $(element).childNodes; + + var options = Object.extend({ + speed: 0.1, + delay: 0.0 + }, arguments[2] || {}); + var masterDelay = options.delay; + + $A(elements).each( function(element, index) { + new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay })); + }); + }, + PAIRS: { + 'slide': ['SlideDown','SlideUp'], + 'blind': ['BlindDown','BlindUp'], + 'appear': ['Appear','Fade'] + }, + toggle: function(element, effect) { + element = $(element); + effect = (effect || 'appear').toLowerCase(); + var options = Object.extend({ + queue: { position:'end', scope:(element.id || 'global'), limit: 1 } + }, arguments[2] || {}); + Effect[element.visible() ? + Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options); + } +}; + +var Effect2 = Effect; // deprecated + +/* ------------- transitions ------------- */ + +Effect.Transitions = { + linear: Prototype.K, + sinoidal: function(pos) { + return (-Math.cos(pos*Math.PI)/2) + 0.5; + }, + reverse: function(pos) { + return 1-pos; + }, + flicker: function(pos) { + return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4; + }, + wobble: function(pos) { + return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5; + }, + pulse: function(pos, pulses) { + pulses = pulses || 5; + return ( + Math.round((pos % (1/pulses)) * pulses) == 0 ? + ((pos * pulses * 2) - Math.floor(pos * pulses * 2)) : + 1 - ((pos * pulses * 2) - Math.floor(pos * pulses * 2)) + ); + }, + none: function(pos) { + return 0; + }, + full: function(pos) { + return 1; + } +}; + +/* ------------- core effects ------------- */ + +Effect.ScopedQueue = Class.create(); +Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), { + initialize: function() { + this.effects = []; + this.interval = null; + }, + _each: function(iterator) { + this.effects._each(iterator); + }, + add: function(effect) { + var timestamp = new Date().getTime(); + + var position = (typeof effect.options.queue == 'string') ? + effect.options.queue : effect.options.queue.position; + + switch(position) { + case 'front': + // move unstarted effects after this effect + this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) { + e.startOn += effect.finishOn; + e.finishOn += effect.finishOn; + }); + break; + case 'with-last': + timestamp = this.effects.pluck('startOn').max() || timestamp; + break; + case 'end': + // start effect after last queued effect has finished + timestamp = this.effects.pluck('finishOn').max() || timestamp; + break; + } + + effect.startOn += timestamp; + effect.finishOn += timestamp; + + if(!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit)) + this.effects.push(effect); + + if(!this.interval) + this.interval = setInterval(this.loop.bind(this), 40); + }, + remove: function(effect) { + this.effects = this.effects.reject(function(e) { return e==effect }); + if(this.effects.length == 0) { + clearInterval(this.interval); + this.interval = null; + } + }, + loop: function() { + var timePos = new Date().getTime(); + this.effects.invoke('loop', timePos); + } +}); + +Effect.Queues = { + instances: $H(), + get: function(queueName) { + if(typeof queueName != 'string') return queueName; + + if(!this.instances[queueName]) + this.instances[queueName] = new Effect.ScopedQueue(); + + return this.instances[queueName]; + } +} +Effect.Queue = Effect.Queues.get('global'); + +Effect.DefaultOptions = { + transition: Effect.Transitions.sinoidal, + duration: 1.0, // seconds + fps: 25.0, // max. 25fps due to Effect.Queue implementation + sync: false, // true for combining + from: 0.0, + to: 1.0, + delay: 0.0, + queue: 'parallel' +} + +Effect.Base = function() {}; +Effect.Base.prototype = { + position: null, + start: function(options) { + this.options = Object.extend(Object.extend({},Effect.DefaultOptions), options || {}); + this.currentFrame = 0; + this.state = 'idle'; + this.startOn = this.options.delay*1000; + this.finishOn = this.startOn + (this.options.duration*1000); + this.event('beforeStart'); + if(!this.options.sync) + Effect.Queues.get(typeof this.options.queue == 'string' ? + 'global' : this.options.queue.scope).add(this); + }, + loop: function(timePos) { + if(timePos >= this.startOn) { + if(timePos >= this.finishOn) { + this.render(1.0); + this.cancel(); + this.event('beforeFinish'); + if(this.finish) this.finish(); + this.event('afterFinish'); + return; + } + var pos = (timePos - this.startOn) / (this.finishOn - this.startOn); + var frame = Math.round(pos * this.options.fps * this.options.duration); + if(frame > this.currentFrame) { + this.render(pos); + this.currentFrame = frame; + } + } + }, + render: function(pos) { + if(this.state == 'idle') { + this.state = 'running'; + this.event('beforeSetup'); + if(this.setup) this.setup(); + this.event('afterSetup'); + } + if(this.state == 'running') { + if(this.options.transition) pos = this.options.transition(pos); + pos *= (this.options.to-this.options.from); + pos += this.options.from; + this.position = pos; + this.event('beforeUpdate'); + if(this.update) this.update(pos); + this.event('afterUpdate'); + } + }, + cancel: function() { + if(!this.options.sync) + Effect.Queues.get(typeof this.options.queue == 'string' ? + 'global' : this.options.queue.scope).remove(this); + this.state = 'finished'; + }, + event: function(eventName) { + if(this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this); + if(this.options[eventName]) this.options[eventName](this); + }, + inspect: function() { + return '#'; + } +} + +Effect.Parallel = Class.create(); +Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), { + initialize: function(effects) { + this.effects = effects || []; + this.start(arguments[1]); + }, + update: function(position) { + this.effects.invoke('render', position); + }, + finish: function(position) { + this.effects.each( function(effect) { + effect.render(1.0); + effect.cancel(); + effect.event('beforeFinish'); + if(effect.finish) effect.finish(position); + effect.event('afterFinish'); + }); + } +}); + +Effect.Event = Class.create(); +Object.extend(Object.extend(Effect.Event.prototype, Effect.Base.prototype), { + initialize: function() { + var options = Object.extend({ + duration: 0 + }, arguments[0] || {}); + this.start(options); + }, + update: Prototype.emptyFunction +}); + +Effect.Opacity = Class.create(); +Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), { + initialize: function(element) { + this.element = $(element); + if(!this.element) throw(Effect._elementDoesNotExistError); + // make this work on IE on elements without 'layout' + if(/MSIE/.test(navigator.userAgent) && !window.opera && (!this.element.currentStyle.hasLayout)) + this.element.setStyle({zoom: 1}); + var options = Object.extend({ + from: this.element.getOpacity() || 0.0, + to: 1.0 + }, arguments[1] || {}); + this.start(options); + }, + update: function(position) { + this.element.setOpacity(position); + } +}); + +Effect.Move = Class.create(); +Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), { + initialize: function(element) { + this.element = $(element); + if(!this.element) throw(Effect._elementDoesNotExistError); + var options = Object.extend({ + x: 0, + y: 0, + mode: 'relative' + }, arguments[1] || {}); + this.start(options); + }, + setup: function() { + // Bug in Opera: Opera returns the "real" position of a static element or + // relative element that does not have top/left explicitly set. + // ==> Always set top and left for position relative elements in your stylesheets + // (to 0 if you do not need them) + this.element.makePositioned(); + this.originalLeft = parseFloat(this.element.getStyle('left') || '0'); + this.originalTop = parseFloat(this.element.getStyle('top') || '0'); + if(this.options.mode == 'absolute') { + // absolute movement, so we need to calc deltaX and deltaY + this.options.x = this.options.x - this.originalLeft; + this.options.y = this.options.y - this.originalTop; + } + }, + update: function(position) { + this.element.setStyle({ + left: Math.round(this.options.x * position + this.originalLeft) + 'px', + top: Math.round(this.options.y * position + this.originalTop) + 'px' + }); + } +}); + +// for backwards compatibility +Effect.MoveBy = function(element, toTop, toLeft) { + return new Effect.Move(element, + Object.extend({ x: toLeft, y: toTop }, arguments[3] || {})); +}; + +Effect.Scale = Class.create(); +Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), { + initialize: function(element, percent) { + this.element = $(element); + if(!this.element) throw(Effect._elementDoesNotExistError); + var options = Object.extend({ + scaleX: true, + scaleY: true, + scaleContent: true, + scaleFromCenter: false, + scaleMode: 'box', // 'box' or 'contents' or {} with provided values + scaleFrom: 100.0, + scaleTo: percent + }, arguments[2] || {}); + this.start(options); + }, + setup: function() { + this.restoreAfterFinish = this.options.restoreAfterFinish || false; + this.elementPositioning = this.element.getStyle('position'); + + this.originalStyle = {}; + ['top','left','width','height','fontSize'].each( function(k) { + this.originalStyle[k] = this.element.style[k]; + }.bind(this)); + + this.originalTop = this.element.offsetTop; + this.originalLeft = this.element.offsetLeft; + + var fontSize = this.element.getStyle('font-size') || '100%'; + ['em','px','%','pt'].each( function(fontSizeType) { + if(fontSize.indexOf(fontSizeType)>0) { + this.fontSize = parseFloat(fontSize); + this.fontSizeType = fontSizeType; + } + }.bind(this)); + + this.factor = (this.options.scaleTo - this.options.scaleFrom)/100; + + this.dims = null; + if(this.options.scaleMode=='box') + this.dims = [this.element.offsetHeight, this.element.offsetWidth]; + if(/^content/.test(this.options.scaleMode)) + this.dims = [this.element.scrollHeight, this.element.scrollWidth]; + if(!this.dims) + this.dims = [this.options.scaleMode.originalHeight, + this.options.scaleMode.originalWidth]; + }, + update: function(position) { + var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position); + if(this.options.scaleContent && this.fontSize) + this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType }); + this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale); + }, + finish: function(position) { + if(this.restoreAfterFinish) this.element.setStyle(this.originalStyle); + }, + setDimensions: function(height, width) { + var d = {}; + if(this.options.scaleX) d.width = Math.round(width) + 'px'; + if(this.options.scaleY) d.height = Math.round(height) + 'px'; + if(this.options.scaleFromCenter) { + var topd = (height - this.dims[0])/2; + var leftd = (width - this.dims[1])/2; + if(this.elementPositioning == 'absolute') { + if(this.options.scaleY) d.top = this.originalTop-topd + 'px'; + if(this.options.scaleX) d.left = this.originalLeft-leftd + 'px'; + } else { + if(this.options.scaleY) d.top = -topd + 'px'; + if(this.options.scaleX) d.left = -leftd + 'px'; + } + } + this.element.setStyle(d); + } +}); + +Effect.Highlight = Class.create(); +Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), { + initialize: function(element) { + this.element = $(element); + if(!this.element) throw(Effect._elementDoesNotExistError); + var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || {}); + this.start(options); + }, + setup: function() { + // Prevent executing on elements not in the layout flow + if(this.element.getStyle('display')=='none') { this.cancel(); return; } + // Disable background image during the effect + this.oldStyle = { + backgroundImage: this.element.getStyle('background-image') }; + this.element.setStyle({backgroundImage: 'none'}); + if(!this.options.endcolor) + this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff'); + if(!this.options.restorecolor) + this.options.restorecolor = this.element.getStyle('background-color'); + // init color calculations + this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this)); + this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this)); + }, + update: function(position) { + this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){ + return m+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart()); }.bind(this)) }); + }, + finish: function() { + this.element.setStyle(Object.extend(this.oldStyle, { + backgroundColor: this.options.restorecolor + })); + } +}); + +Effect.ScrollTo = Class.create(); +Object.extend(Object.extend(Effect.ScrollTo.prototype, Effect.Base.prototype), { + initialize: function(element) { + this.element = $(element); + this.start(arguments[1] || {}); + }, + setup: function() { + Position.prepare(); + var offsets = Position.cumulativeOffset(this.element); + if(this.options.offset) offsets[1] += this.options.offset; + var max = window.innerHeight ? + window.height - window.innerHeight : + document.body.scrollHeight - + (document.documentElement.clientHeight ? + document.documentElement.clientHeight : document.body.clientHeight); + this.scrollStart = Position.deltaY; + this.delta = (offsets[1] > max ? max : offsets[1]) - this.scrollStart; + }, + update: function(position) { + Position.prepare(); + window.scrollTo(Position.deltaX, + this.scrollStart + (position*this.delta)); + } +}); + +/* ------------- combination effects ------------- */ + +Effect.Fade = function(element) { + element = $(element); + var oldOpacity = element.getInlineOpacity(); + var options = Object.extend({ + from: element.getOpacity() || 1.0, + to: 0.0, + afterFinishInternal: function(effect) { + if(effect.options.to!=0) return; + effect.element.hide().setStyle({opacity: oldOpacity}); + }}, arguments[1] || {}); + return new Effect.Opacity(element,options); +} + +Effect.Appear = function(element) { + element = $(element); + var options = Object.extend({ + from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0), + to: 1.0, + // force Safari to render floated elements properly + afterFinishInternal: function(effect) { + effect.element.forceRerendering(); + }, + beforeSetup: function(effect) { + effect.element.setOpacity(effect.options.from).show(); + }}, arguments[1] || {}); + return new Effect.Opacity(element,options); +} + +Effect.Puff = function(element) { + element = $(element); + var oldStyle = { + opacity: element.getInlineOpacity(), + position: element.getStyle('position'), + top: element.style.top, + left: element.style.left, + width: element.style.width, + height: element.style.height + }; + return new Effect.Parallel( + [ new Effect.Scale(element, 200, + { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }), + new Effect.Opacity(element, { sync: true, to: 0.0 } ) ], + Object.extend({ duration: 1.0, + beforeSetupInternal: function(effect) { + Position.absolutize(effect.effects[0].element) + }, + afterFinishInternal: function(effect) { + effect.effects[0].element.hide().setStyle(oldStyle); } + }, arguments[1] || {}) + ); +} + +Effect.BlindUp = function(element) { + element = $(element); + element.makeClipping(); + return new Effect.Scale(element, 0, + Object.extend({ scaleContent: false, + scaleX: false, + restoreAfterFinish: true, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping(); + } + }, arguments[1] || {}) + ); +} + +Effect.BlindDown = function(element) { + element = $(element); + var elementDimensions = element.getDimensions(); + return new Effect.Scale(element, 100, Object.extend({ + scaleContent: false, + scaleX: false, + scaleFrom: 0, + scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width}, + restoreAfterFinish: true, + afterSetup: function(effect) { + effect.element.makeClipping().setStyle({height: '0px'}).show(); + }, + afterFinishInternal: function(effect) { + effect.element.undoClipping(); + } + }, arguments[1] || {})); +} + +Effect.SwitchOff = function(element) { + element = $(element); + var oldOpacity = element.getInlineOpacity(); + return new Effect.Appear(element, Object.extend({ + duration: 0.4, + from: 0, + transition: Effect.Transitions.flicker, + afterFinishInternal: function(effect) { + new Effect.Scale(effect.element, 1, { + duration: 0.3, scaleFromCenter: true, + scaleX: false, scaleContent: false, restoreAfterFinish: true, + beforeSetup: function(effect) { + effect.element.makePositioned().makeClipping(); + }, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping().undoPositioned().setStyle({opacity: oldOpacity}); + } + }) + } + }, arguments[1] || {})); +} + +Effect.DropOut = function(element) { + element = $(element); + var oldStyle = { + top: element.getStyle('top'), + left: element.getStyle('left'), + opacity: element.getInlineOpacity() }; + return new Effect.Parallel( + [ new Effect.Move(element, {x: 0, y: 100, sync: true }), + new Effect.Opacity(element, { sync: true, to: 0.0 }) ], + Object.extend( + { duration: 0.5, + beforeSetup: function(effect) { + effect.effects[0].element.makePositioned(); + }, + afterFinishInternal: function(effect) { + effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle); + } + }, arguments[1] || {})); +} + +Effect.Shake = function(element) { + element = $(element); + var oldStyle = { + top: element.getStyle('top'), + left: element.getStyle('left') }; + return new Effect.Move(element, + { x: 20, y: 0, duration: 0.05, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) { + new Effect.Move(effect.element, + { x: -20, y: 0, duration: 0.05, afterFinishInternal: function(effect) { + effect.element.undoPositioned().setStyle(oldStyle); + }}) }}) }}) }}) }}) }}); +} + +Effect.SlideDown = function(element) { + element = $(element).cleanWhitespace(); + // SlideDown need to have the content of the element wrapped in a container element with fixed height! + var oldInnerBottom = element.down().getStyle('bottom'); + var elementDimensions = element.getDimensions(); + return new Effect.Scale(element, 100, Object.extend({ + scaleContent: false, + scaleX: false, + scaleFrom: window.opera ? 0 : 1, + scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width}, + restoreAfterFinish: true, + afterSetup: function(effect) { + effect.element.makePositioned(); + effect.element.down().makePositioned(); + if(window.opera) effect.element.setStyle({top: ''}); + effect.element.makeClipping().setStyle({height: '0px'}).show(); + }, + afterUpdateInternal: function(effect) { + effect.element.down().setStyle({bottom: + (effect.dims[0] - effect.element.clientHeight) + 'px' }); + }, + afterFinishInternal: function(effect) { + effect.element.undoClipping().undoPositioned(); + effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); } + }, arguments[1] || {}) + ); +} + +Effect.SlideUp = function(element) { + element = $(element).cleanWhitespace(); + var oldInnerBottom = element.down().getStyle('bottom'); + return new Effect.Scale(element, window.opera ? 0 : 1, + Object.extend({ scaleContent: false, + scaleX: false, + scaleMode: 'box', + scaleFrom: 100, + restoreAfterFinish: true, + beforeStartInternal: function(effect) { + effect.element.makePositioned(); + effect.element.down().makePositioned(); + if(window.opera) effect.element.setStyle({top: ''}); + effect.element.makeClipping().show(); + }, + afterUpdateInternal: function(effect) { + effect.element.down().setStyle({bottom: + (effect.dims[0] - effect.element.clientHeight) + 'px' }); + }, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping().undoPositioned().setStyle({bottom: oldInnerBottom}); + effect.element.down().undoPositioned(); + } + }, arguments[1] || {}) + ); +} + +// Bug in opera makes the TD containing this element expand for a instance after finish +Effect.Squish = function(element) { + return new Effect.Scale(element, window.opera ? 1 : 0, { + restoreAfterFinish: true, + beforeSetup: function(effect) { + effect.element.makeClipping(); + }, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping(); + } + }); +} + +Effect.Grow = function(element) { + element = $(element); + var options = Object.extend({ + direction: 'center', + moveTransition: Effect.Transitions.sinoidal, + scaleTransition: Effect.Transitions.sinoidal, + opacityTransition: Effect.Transitions.full + }, arguments[1] || {}); + var oldStyle = { + top: element.style.top, + left: element.style.left, + height: element.style.height, + width: element.style.width, + opacity: element.getInlineOpacity() }; + + var dims = element.getDimensions(); + var initialMoveX, initialMoveY; + var moveX, moveY; + + switch (options.direction) { + case 'top-left': + initialMoveX = initialMoveY = moveX = moveY = 0; + break; + case 'top-right': + initialMoveX = dims.width; + initialMoveY = moveY = 0; + moveX = -dims.width; + break; + case 'bottom-left': + initialMoveX = moveX = 0; + initialMoveY = dims.height; + moveY = -dims.height; + break; + case 'bottom-right': + initialMoveX = dims.width; + initialMoveY = dims.height; + moveX = -dims.width; + moveY = -dims.height; + break; + case 'center': + initialMoveX = dims.width / 2; + initialMoveY = dims.height / 2; + moveX = -dims.width / 2; + moveY = -dims.height / 2; + break; + } + + return new Effect.Move(element, { + x: initialMoveX, + y: initialMoveY, + duration: 0.01, + beforeSetup: function(effect) { + effect.element.hide().makeClipping().makePositioned(); + }, + afterFinishInternal: function(effect) { + new Effect.Parallel( + [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }), + new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }), + new Effect.Scale(effect.element, 100, { + scaleMode: { originalHeight: dims.height, originalWidth: dims.width }, + sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true}) + ], Object.extend({ + beforeSetup: function(effect) { + effect.effects[0].element.setStyle({height: '0px'}).show(); + }, + afterFinishInternal: function(effect) { + effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle); + } + }, options) + ) + } + }); +} + +Effect.Shrink = function(element) { + element = $(element); + var options = Object.extend({ + direction: 'center', + moveTransition: Effect.Transitions.sinoidal, + scaleTransition: Effect.Transitions.sinoidal, + opacityTransition: Effect.Transitions.none + }, arguments[1] || {}); + var oldStyle = { + top: element.style.top, + left: element.style.left, + height: element.style.height, + width: element.style.width, + opacity: element.getInlineOpacity() }; + + var dims = element.getDimensions(); + var moveX, moveY; + + switch (options.direction) { + case 'top-left': + moveX = moveY = 0; + break; + case 'top-right': + moveX = dims.width; + moveY = 0; + break; + case 'bottom-left': + moveX = 0; + moveY = dims.height; + break; + case 'bottom-right': + moveX = dims.width; + moveY = dims.height; + break; + case 'center': + moveX = dims.width / 2; + moveY = dims.height / 2; + break; + } + + return new Effect.Parallel( + [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }), + new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}), + new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }) + ], Object.extend({ + beforeStartInternal: function(effect) { + effect.effects[0].element.makePositioned().makeClipping(); + }, + afterFinishInternal: function(effect) { + effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); } + }, options) + ); +} + +Effect.Pulsate = function(element) { + element = $(element); + var options = arguments[1] || {}; + var oldOpacity = element.getInlineOpacity(); + var transition = options.transition || Effect.Transitions.sinoidal; + var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos, options.pulses)) }; + reverser.bind(transition); + return new Effect.Opacity(element, + Object.extend(Object.extend({ duration: 2.0, from: 0, + afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); } + }, options), {transition: reverser})); +} + +Effect.Fold = function(element) { + element = $(element); + var oldStyle = { + top: element.style.top, + left: element.style.left, + width: element.style.width, + height: element.style.height }; + element.makeClipping(); + return new Effect.Scale(element, 5, Object.extend({ + scaleContent: false, + scaleX: false, + afterFinishInternal: function(effect) { + new Effect.Scale(element, 1, { + scaleContent: false, + scaleY: false, + afterFinishInternal: function(effect) { + effect.element.hide().undoClipping().setStyle(oldStyle); + } }); + }}, arguments[1] || {})); +}; + +Effect.Morph = Class.create(); +Object.extend(Object.extend(Effect.Morph.prototype, Effect.Base.prototype), { + initialize: function(element) { + this.element = $(element); + if(!this.element) throw(Effect._elementDoesNotExistError); + var options = Object.extend({ + style: '' + }, arguments[1] || {}); + this.start(options); + }, + setup: function(){ + function parseColor(color){ + if(!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff'; + color = color.parseColor(); + return $R(0,2).map(function(i){ + return parseInt( color.slice(i*2+1,i*2+3), 16 ) + }); + } + this.transforms = this.options.style.parseStyle().map(function(property){ + var originalValue = this.element.getStyle(property[0]); + return $H({ + style: property[0], + originalValue: property[1].unit=='color' ? + parseColor(originalValue) : parseFloat(originalValue || 0), + targetValue: property[1].unit=='color' ? + parseColor(property[1].value) : property[1].value, + unit: property[1].unit + }); + }.bind(this)).reject(function(transform){ + return ( + (transform.originalValue == transform.targetValue) || + ( + transform.unit != 'color' && + (isNaN(transform.originalValue) || isNaN(transform.targetValue)) + ) + ) + }); + }, + update: function(position) { + var style = $H(), value = null; + this.transforms.each(function(transform){ + value = transform.unit=='color' ? + $R(0,2).inject('#',function(m,v,i){ + return m+(Math.round(transform.originalValue[i]+ + (transform.targetValue[i] - transform.originalValue[i])*position)).toColorPart() }) : + transform.originalValue + Math.round( + ((transform.targetValue - transform.originalValue) * position) * 1000)/1000 + transform.unit; + style[transform.style] = value; + }); + this.element.setStyle(style); + } +}); + +Effect.Transform = Class.create(); +Object.extend(Effect.Transform.prototype, { + initialize: function(tracks){ + this.tracks = []; + this.options = arguments[1] || {}; + this.addTracks(tracks); + }, + addTracks: function(tracks){ + tracks.each(function(track){ + var data = $H(track).values().first(); + this.tracks.push($H({ + ids: $H(track).keys().first(), + effect: Effect.Morph, + options: { style: data } + })); + }.bind(this)); + return this; + }, + play: function(){ + return new Effect.Parallel( + this.tracks.map(function(track){ + var elements = [$(track.ids) || $$(track.ids)].flatten(); + return elements.map(function(e){ return new track.effect(e, Object.extend({ sync:true }, track.options)) }); + }).flatten(), + this.options + ); + } +}); + +Element.CSS_PROPERTIES = ['azimuth', 'backgroundAttachment', 'backgroundColor', 'backgroundImage', + 'backgroundPosition', 'backgroundRepeat', 'borderBottomColor', 'borderBottomStyle', + 'borderBottomWidth', 'borderCollapse', 'borderLeftColor', 'borderLeftStyle', 'borderLeftWidth', + 'borderRightColor', 'borderRightStyle', 'borderRightWidth', 'borderSpacing', 'borderTopColor', + 'borderTopStyle', 'borderTopWidth', 'bottom', 'captionSide', 'clear', 'clip', 'color', 'content', + 'counterIncrement', 'counterReset', 'cssFloat', 'cueAfter', 'cueBefore', 'cursor', 'direction', + 'display', 'elevation', 'emptyCells', 'fontFamily', 'fontSize', 'fontSizeAdjust', 'fontStretch', + 'fontStyle', 'fontVariant', 'fontWeight', 'height', 'left', 'letterSpacing', 'lineHeight', + 'listStyleImage', 'listStylePosition', 'listStyleType', 'marginBottom', 'marginLeft', 'marginRight', + 'marginTop', 'markerOffset', 'marks', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'opacity', + 'orphans', 'outlineColor', 'outlineOffset', 'outlineStyle', 'outlineWidth', 'overflowX', 'overflowY', + 'paddingBottom', 'paddingLeft', 'paddingRight', 'paddingTop', 'page', 'pageBreakAfter', 'pageBreakBefore', + 'pageBreakInside', 'pauseAfter', 'pauseBefore', 'pitch', 'pitchRange', 'position', 'quotes', + 'richness', 'right', 'size', 'speakHeader', 'speakNumeral', 'speakPunctuation', 'speechRate', 'stress', + 'tableLayout', 'textAlign', 'textDecoration', 'textIndent', 'textShadow', 'textTransform', 'top', + 'unicodeBidi', 'verticalAlign', 'visibility', 'voiceFamily', 'volume', 'whiteSpace', 'widows', + 'width', 'wordSpacing', 'zIndex']; + +Element.CSS_LENGTH = /^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/; + +String.prototype.parseStyle = function(){ + var element = Element.extend(document.createElement('div')); + element.innerHTML = '

    '; + var style = element.down().style, styleRules = $H(); + + Element.CSS_PROPERTIES.each(function(property){ + if(style[property]) styleRules[property] = style[property]; + }); + + var result = $H(); + + styleRules.each(function(pair){ + var property = pair[0], value = pair[1], unit = null; + + if(value.parseColor('#zzzzzz') != '#zzzzzz') { + value = value.parseColor(); + unit = 'color'; + } else if(Element.CSS_LENGTH.test(value)) + var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/), + value = parseFloat(components[1]), unit = (components.length == 3) ? components[2] : null; + + result[property.underscore().dasherize()] = $H({ value:value, unit:unit }); + }.bind(this)); + + return result; +}; + +Element.morph = function(element, style) { + new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || {})); + return element; +}; + +['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom', + 'collectTextNodes','collectTextNodesIgnoreClass','morph'].each( + function(f) { Element.Methods[f] = Element[f]; } +); + +Element.Methods.visualEffect = function(element, effect, options) { + s = effect.gsub(/_/, '-').camelize(); + effect_class = s.charAt(0).toUpperCase() + s.substring(1); + new Effect[effect_class](element, options); + return $(element); +}; + +Element.addMethods(); \ No newline at end of file diff --git a/test/rails_root/public/javascripts/prototype.js b/test/rails_root/public/javascripts/prototype.js new file mode 100644 index 00000000..50582217 --- /dev/null +++ b/test/rails_root/public/javascripts/prototype.js @@ -0,0 +1,2515 @@ +/* Prototype JavaScript framework, version 1.5.0 + * (c) 2005-2007 Sam Stephenson + * + * Prototype is freely distributable under the terms of an MIT-style license. + * For details, see the Prototype web site: http://prototype.conio.net/ + * +/*--------------------------------------------------------------------------*/ + +var Prototype = { + Version: '1.5.0', + BrowserFeatures: { + XPath: !!document.evaluate + }, + + ScriptFragment: '(?:)((\n|\r|.)*?)(?:<\/script>)', + emptyFunction: function() {}, + K: function(x) { return x } +} + +var Class = { + create: function() { + return function() { + this.initialize.apply(this, arguments); + } + } +} + +var Abstract = new Object(); + +Object.extend = function(destination, source) { + for (var property in source) { + destination[property] = source[property]; + } + return destination; +} + +Object.extend(Object, { + inspect: function(object) { + try { + if (object === undefined) return 'undefined'; + if (object === null) return 'null'; + return object.inspect ? object.inspect() : object.toString(); + } catch (e) { + if (e instanceof RangeError) return '...'; + throw e; + } + }, + + keys: function(object) { + var keys = []; + for (var property in object) + keys.push(property); + return keys; + }, + + values: function(object) { + var values = []; + for (var property in object) + values.push(object[property]); + return values; + }, + + clone: function(object) { + return Object.extend({}, object); + } +}); + +Function.prototype.bind = function() { + var __method = this, args = $A(arguments), object = args.shift(); + return function() { + return __method.apply(object, args.concat($A(arguments))); + } +} + +Function.prototype.bindAsEventListener = function(object) { + var __method = this, args = $A(arguments), object = args.shift(); + return function(event) { + return __method.apply(object, [( event || window.event)].concat(args).concat($A(arguments))); + } +} + +Object.extend(Number.prototype, { + toColorPart: function() { + var digits = this.toString(16); + if (this < 16) return '0' + digits; + return digits; + }, + + succ: function() { + return this + 1; + }, + + times: function(iterator) { + $R(0, this, true).each(iterator); + return this; + } +}); + +var Try = { + these: function() { + var returnValue; + + for (var i = 0, length = arguments.length; i < length; i++) { + var lambda = arguments[i]; + try { + returnValue = lambda(); + break; + } catch (e) {} + } + + return returnValue; + } +} + +/*--------------------------------------------------------------------------*/ + +var PeriodicalExecuter = Class.create(); +PeriodicalExecuter.prototype = { + initialize: function(callback, frequency) { + this.callback = callback; + this.frequency = frequency; + this.currentlyExecuting = false; + + this.registerCallback(); + }, + + registerCallback: function() { + this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000); + }, + + stop: function() { + if (!this.timer) return; + clearInterval(this.timer); + this.timer = null; + }, + + onTimerEvent: function() { + if (!this.currentlyExecuting) { + try { + this.currentlyExecuting = true; + this.callback(this); + } finally { + this.currentlyExecuting = false; + } + } + } +} +String.interpret = function(value){ + return value == null ? '' : String(value); +} + +Object.extend(String.prototype, { + gsub: function(pattern, replacement) { + var result = '', source = this, match; + replacement = arguments.callee.prepareReplacement(replacement); + + while (source.length > 0) { + if (match = source.match(pattern)) { + result += source.slice(0, match.index); + result += String.interpret(replacement(match)); + source = source.slice(match.index + match[0].length); + } else { + result += source, source = ''; + } + } + return result; + }, + + sub: function(pattern, replacement, count) { + replacement = this.gsub.prepareReplacement(replacement); + count = count === undefined ? 1 : count; + + return this.gsub(pattern, function(match) { + if (--count < 0) return match[0]; + return replacement(match); + }); + }, + + scan: function(pattern, iterator) { + this.gsub(pattern, iterator); + return this; + }, + + truncate: function(length, truncation) { + length = length || 30; + truncation = truncation === undefined ? '...' : truncation; + return this.length > length ? + this.slice(0, length - truncation.length) + truncation : this; + }, + + strip: function() { + return this.replace(/^\s+/, '').replace(/\s+$/, ''); + }, + + stripTags: function() { + return this.replace(/<\/?[^>]+>/gi, ''); + }, + + stripScripts: function() { + return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), ''); + }, + + extractScripts: function() { + var matchAll = new RegExp(Prototype.ScriptFragment, 'img'); + var matchOne = new RegExp(Prototype.ScriptFragment, 'im'); + return (this.match(matchAll) || []).map(function(scriptTag) { + return (scriptTag.match(matchOne) || ['', ''])[1]; + }); + }, + + evalScripts: function() { + return this.extractScripts().map(function(script) { return eval(script) }); + }, + + escapeHTML: function() { + var div = document.createElement('div'); + var text = document.createTextNode(this); + div.appendChild(text); + return div.innerHTML; + }, + + unescapeHTML: function() { + var div = document.createElement('div'); + div.innerHTML = this.stripTags(); + return div.childNodes[0] ? (div.childNodes.length > 1 ? + $A(div.childNodes).inject('',function(memo,node){ return memo+node.nodeValue }) : + div.childNodes[0].nodeValue) : ''; + }, + + toQueryParams: function(separator) { + var match = this.strip().match(/([^?#]*)(#.*)?$/); + if (!match) return {}; + + return match[1].split(separator || '&').inject({}, function(hash, pair) { + if ((pair = pair.split('='))[0]) { + var name = decodeURIComponent(pair[0]); + var value = pair[1] ? decodeURIComponent(pair[1]) : undefined; + + if (hash[name] !== undefined) { + if (hash[name].constructor != Array) + hash[name] = [hash[name]]; + if (value) hash[name].push(value); + } + else hash[name] = value; + } + return hash; + }); + }, + + toArray: function() { + return this.split(''); + }, + + succ: function() { + return this.slice(0, this.length - 1) + + String.fromCharCode(this.charCodeAt(this.length - 1) + 1); + }, + + camelize: function() { + var parts = this.split('-'), len = parts.length; + if (len == 1) return parts[0]; + + var camelized = this.charAt(0) == '-' + ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1) + : parts[0]; + + for (var i = 1; i < len; i++) + camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1); + + return camelized; + }, + + capitalize: function(){ + return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase(); + }, + + underscore: function() { + return this.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase(); + }, + + dasherize: function() { + return this.gsub(/_/,'-'); + }, + + inspect: function(useDoubleQuotes) { + var escapedString = this.replace(/\\/g, '\\\\'); + if (useDoubleQuotes) + return '"' + escapedString.replace(/"/g, '\\"') + '"'; + else + return "'" + escapedString.replace(/'/g, '\\\'') + "'"; + } +}); + +String.prototype.gsub.prepareReplacement = function(replacement) { + if (typeof replacement == 'function') return replacement; + var template = new Template(replacement); + return function(match) { return template.evaluate(match) }; +} + +String.prototype.parseQuery = String.prototype.toQueryParams; + +var Template = Class.create(); +Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/; +Template.prototype = { + initialize: function(template, pattern) { + this.template = template.toString(); + this.pattern = pattern || Template.Pattern; + }, + + evaluate: function(object) { + return this.template.gsub(this.pattern, function(match) { + var before = match[1]; + if (before == '\\') return match[2]; + return before + String.interpret(object[match[3]]); + }); + } +} + +var $break = new Object(); +var $continue = new Object(); + +var Enumerable = { + each: function(iterator) { + var index = 0; + try { + this._each(function(value) { + try { + iterator(value, index++); + } catch (e) { + if (e != $continue) throw e; + } + }); + } catch (e) { + if (e != $break) throw e; + } + return this; + }, + + eachSlice: function(number, iterator) { + var index = -number, slices = [], array = this.toArray(); + while ((index += number) < array.length) + slices.push(array.slice(index, index+number)); + return slices.map(iterator); + }, + + all: function(iterator) { + var result = true; + this.each(function(value, index) { + result = result && !!(iterator || Prototype.K)(value, index); + if (!result) throw $break; + }); + return result; + }, + + any: function(iterator) { + var result = false; + this.each(function(value, index) { + if (result = !!(iterator || Prototype.K)(value, index)) + throw $break; + }); + return result; + }, + + collect: function(iterator) { + var results = []; + this.each(function(value, index) { + results.push((iterator || Prototype.K)(value, index)); + }); + return results; + }, + + detect: function(iterator) { + var result; + this.each(function(value, index) { + if (iterator(value, index)) { + result = value; + throw $break; + } + }); + return result; + }, + + findAll: function(iterator) { + var results = []; + this.each(function(value, index) { + if (iterator(value, index)) + results.push(value); + }); + return results; + }, + + grep: function(pattern, iterator) { + var results = []; + this.each(function(value, index) { + var stringValue = value.toString(); + if (stringValue.match(pattern)) + results.push((iterator || Prototype.K)(value, index)); + }) + return results; + }, + + include: function(object) { + var found = false; + this.each(function(value) { + if (value == object) { + found = true; + throw $break; + } + }); + return found; + }, + + inGroupsOf: function(number, fillWith) { + fillWith = fillWith === undefined ? null : fillWith; + return this.eachSlice(number, function(slice) { + while(slice.length < number) slice.push(fillWith); + return slice; + }); + }, + + inject: function(memo, iterator) { + this.each(function(value, index) { + memo = iterator(memo, value, index); + }); + return memo; + }, + + invoke: function(method) { + var args = $A(arguments).slice(1); + return this.map(function(value) { + return value[method].apply(value, args); + }); + }, + + max: function(iterator) { + var result; + this.each(function(value, index) { + value = (iterator || Prototype.K)(value, index); + if (result == undefined || value >= result) + result = value; + }); + return result; + }, + + min: function(iterator) { + var result; + this.each(function(value, index) { + value = (iterator || Prototype.K)(value, index); + if (result == undefined || value < result) + result = value; + }); + return result; + }, + + partition: function(iterator) { + var trues = [], falses = []; + this.each(function(value, index) { + ((iterator || Prototype.K)(value, index) ? + trues : falses).push(value); + }); + return [trues, falses]; + }, + + pluck: function(property) { + var results = []; + this.each(function(value, index) { + results.push(value[property]); + }); + return results; + }, + + reject: function(iterator) { + var results = []; + this.each(function(value, index) { + if (!iterator(value, index)) + results.push(value); + }); + return results; + }, + + sortBy: function(iterator) { + return this.map(function(value, index) { + return {value: value, criteria: iterator(value, index)}; + }).sort(function(left, right) { + var a = left.criteria, b = right.criteria; + return a < b ? -1 : a > b ? 1 : 0; + }).pluck('value'); + }, + + toArray: function() { + return this.map(); + }, + + zip: function() { + var iterator = Prototype.K, args = $A(arguments); + if (typeof args.last() == 'function') + iterator = args.pop(); + + var collections = [this].concat(args).map($A); + return this.map(function(value, index) { + return iterator(collections.pluck(index)); + }); + }, + + size: function() { + return this.toArray().length; + }, + + inspect: function() { + return '#'; + } +} + +Object.extend(Enumerable, { + map: Enumerable.collect, + find: Enumerable.detect, + select: Enumerable.findAll, + member: Enumerable.include, + entries: Enumerable.toArray +}); +var $A = Array.from = function(iterable) { + if (!iterable) return []; + if (iterable.toArray) { + return iterable.toArray(); + } else { + var results = []; + for (var i = 0, length = iterable.length; i < length; i++) + results.push(iterable[i]); + return results; + } +} + +Object.extend(Array.prototype, Enumerable); + +if (!Array.prototype._reverse) + Array.prototype._reverse = Array.prototype.reverse; + +Object.extend(Array.prototype, { + _each: function(iterator) { + for (var i = 0, length = this.length; i < length; i++) + iterator(this[i]); + }, + + clear: function() { + this.length = 0; + return this; + }, + + first: function() { + return this[0]; + }, + + last: function() { + return this[this.length - 1]; + }, + + compact: function() { + return this.select(function(value) { + return value != null; + }); + }, + + flatten: function() { + return this.inject([], function(array, value) { + return array.concat(value && value.constructor == Array ? + value.flatten() : [value]); + }); + }, + + without: function() { + var values = $A(arguments); + return this.select(function(value) { + return !values.include(value); + }); + }, + + indexOf: function(object) { + for (var i = 0, length = this.length; i < length; i++) + if (this[i] == object) return i; + return -1; + }, + + reverse: function(inline) { + return (inline !== false ? this : this.toArray())._reverse(); + }, + + reduce: function() { + return this.length > 1 ? this : this[0]; + }, + + uniq: function() { + return this.inject([], function(array, value) { + return array.include(value) ? array : array.concat([value]); + }); + }, + + clone: function() { + return [].concat(this); + }, + + size: function() { + return this.length; + }, + + inspect: function() { + return '[' + this.map(Object.inspect).join(', ') + ']'; + } +}); + +Array.prototype.toArray = Array.prototype.clone; + +function $w(string){ + string = string.strip(); + return string ? string.split(/\s+/) : []; +} + +if(window.opera){ + Array.prototype.concat = function(){ + var array = []; + for(var i = 0, length = this.length; i < length; i++) array.push(this[i]); + for(var i = 0, length = arguments.length; i < length; i++) { + if(arguments[i].constructor == Array) { + for(var j = 0, arrayLength = arguments[i].length; j < arrayLength; j++) + array.push(arguments[i][j]); + } else { + array.push(arguments[i]); + } + } + return array; + } +} +var Hash = function(obj) { + Object.extend(this, obj || {}); +}; + +Object.extend(Hash, { + toQueryString: function(obj) { + var parts = []; + + this.prototype._each.call(obj, function(pair) { + if (!pair.key) return; + + if (pair.value && pair.value.constructor == Array) { + var values = pair.value.compact(); + if (values.length < 2) pair.value = values.reduce(); + else { + key = encodeURIComponent(pair.key); + values.each(function(value) { + value = value != undefined ? encodeURIComponent(value) : ''; + parts.push(key + '=' + encodeURIComponent(value)); + }); + return; + } + } + if (pair.value == undefined) pair[1] = ''; + parts.push(pair.map(encodeURIComponent).join('=')); + }); + + return parts.join('&'); + } +}); + +Object.extend(Hash.prototype, Enumerable); +Object.extend(Hash.prototype, { + _each: function(iterator) { + for (var key in this) { + var value = this[key]; + if (value && value == Hash.prototype[key]) continue; + + var pair = [key, value]; + pair.key = key; + pair.value = value; + iterator(pair); + } + }, + + keys: function() { + return this.pluck('key'); + }, + + values: function() { + return this.pluck('value'); + }, + + merge: function(hash) { + return $H(hash).inject(this, function(mergedHash, pair) { + mergedHash[pair.key] = pair.value; + return mergedHash; + }); + }, + + remove: function() { + var result; + for(var i = 0, length = arguments.length; i < length; i++) { + var value = this[arguments[i]]; + if (value !== undefined){ + if (result === undefined) result = value; + else { + if (result.constructor != Array) result = [result]; + result.push(value) + } + } + delete this[arguments[i]]; + } + return result; + }, + + toQueryString: function() { + return Hash.toQueryString(this); + }, + + inspect: function() { + return '#'; + } +}); + +function $H(object) { + if (object && object.constructor == Hash) return object; + return new Hash(object); +}; +ObjectRange = Class.create(); +Object.extend(ObjectRange.prototype, Enumerable); +Object.extend(ObjectRange.prototype, { + initialize: function(start, end, exclusive) { + this.start = start; + this.end = end; + this.exclusive = exclusive; + }, + + _each: function(iterator) { + var value = this.start; + while (this.include(value)) { + iterator(value); + value = value.succ(); + } + }, + + include: function(value) { + if (value < this.start) + return false; + if (this.exclusive) + return value < this.end; + return value <= this.end; + } +}); + +var $R = function(start, end, exclusive) { + return new ObjectRange(start, end, exclusive); +} + +var Ajax = { + getTransport: function() { + return Try.these( + function() {return new XMLHttpRequest()}, + function() {return new ActiveXObject('Msxml2.XMLHTTP')}, + function() {return new ActiveXObject('Microsoft.XMLHTTP')} + ) || false; + }, + + activeRequestCount: 0 +} + +Ajax.Responders = { + responders: [], + + _each: function(iterator) { + this.responders._each(iterator); + }, + + register: function(responder) { + if (!this.include(responder)) + this.responders.push(responder); + }, + + unregister: function(responder) { + this.responders = this.responders.without(responder); + }, + + dispatch: function(callback, request, transport, json) { + this.each(function(responder) { + if (typeof responder[callback] == 'function') { + try { + responder[callback].apply(responder, [request, transport, json]); + } catch (e) {} + } + }); + } +}; + +Object.extend(Ajax.Responders, Enumerable); + +Ajax.Responders.register({ + onCreate: function() { + Ajax.activeRequestCount++; + }, + onComplete: function() { + Ajax.activeRequestCount--; + } +}); + +Ajax.Base = function() {}; +Ajax.Base.prototype = { + setOptions: function(options) { + this.options = { + method: 'post', + asynchronous: true, + contentType: 'application/x-www-form-urlencoded', + encoding: 'UTF-8', + parameters: '' + } + Object.extend(this.options, options || {}); + + this.options.method = this.options.method.toLowerCase(); + if (typeof this.options.parameters == 'string') + this.options.parameters = this.options.parameters.toQueryParams(); + } +} + +Ajax.Request = Class.create(); +Ajax.Request.Events = + ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete']; + +Ajax.Request.prototype = Object.extend(new Ajax.Base(), { + _complete: false, + + initialize: function(url, options) { + this.transport = Ajax.getTransport(); + this.setOptions(options); + this.request(url); + }, + + request: function(url) { + this.url = url; + this.method = this.options.method; + var params = this.options.parameters; + + if (!['get', 'post'].include(this.method)) { + // simulate other verbs over post + params['_method'] = this.method; + this.method = 'post'; + } + + params = Hash.toQueryString(params); + if (params && /Konqueror|Safari|KHTML/.test(navigator.userAgent)) params += '&_=' + + // when GET, append parameters to URL + if (this.method == 'get' && params) + this.url += (this.url.indexOf('?') > -1 ? '&' : '?') + params; + + try { + Ajax.Responders.dispatch('onCreate', this, this.transport); + + this.transport.open(this.method.toUpperCase(), this.url, + this.options.asynchronous); + + if (this.options.asynchronous) + setTimeout(function() { this.respondToReadyState(1) }.bind(this), 10); + + this.transport.onreadystatechange = this.onStateChange.bind(this); + this.setRequestHeaders(); + + var body = this.method == 'post' ? (this.options.postBody || params) : null; + + this.transport.send(body); + + /* Force Firefox to handle ready state 4 for synchronous requests */ + if (!this.options.asynchronous && this.transport.overrideMimeType) + this.onStateChange(); + + } + catch (e) { + this.dispatchException(e); + } + }, + + onStateChange: function() { + var readyState = this.transport.readyState; + if (readyState > 1 && !((readyState == 4) && this._complete)) + this.respondToReadyState(this.transport.readyState); + }, + + setRequestHeaders: function() { + var headers = { + 'X-Requested-With': 'XMLHttpRequest', + 'X-Prototype-Version': Prototype.Version, + 'Accept': 'text/javascript, text/html, application/xml, text/xml, */*' + }; + + if (this.method == 'post') { + headers['Content-type'] = this.options.contentType + + (this.options.encoding ? '; charset=' + this.options.encoding : ''); + + /* Force "Connection: close" for older Mozilla browsers to work + * around a bug where XMLHttpRequest sends an incorrect + * Content-length header. See Mozilla Bugzilla #246651. + */ + if (this.transport.overrideMimeType && + (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005) + headers['Connection'] = 'close'; + } + + // user-defined headers + if (typeof this.options.requestHeaders == 'object') { + var extras = this.options.requestHeaders; + + if (typeof extras.push == 'function') + for (var i = 0, length = extras.length; i < length; i += 2) + headers[extras[i]] = extras[i+1]; + else + $H(extras).each(function(pair) { headers[pair.key] = pair.value }); + } + + for (var name in headers) + this.transport.setRequestHeader(name, headers[name]); + }, + + success: function() { + return !this.transport.status + || (this.transport.status >= 200 && this.transport.status < 300); + }, + + respondToReadyState: function(readyState) { + var state = Ajax.Request.Events[readyState]; + var transport = this.transport, json = this.evalJSON(); + + if (state == 'Complete') { + try { + this._complete = true; + (this.options['on' + this.transport.status] + || this.options['on' + (this.success() ? 'Success' : 'Failure')] + || Prototype.emptyFunction)(transport, json); + } catch (e) { + this.dispatchException(e); + } + + if ((this.getHeader('Content-type') || 'text/javascript').strip(). + match(/^(text|application)\/(x-)?(java|ecma)script(;.*)?$/i)) + this.evalResponse(); + } + + try { + (this.options['on' + state] || Prototype.emptyFunction)(transport, json); + Ajax.Responders.dispatch('on' + state, this, transport, json); + } catch (e) { + this.dispatchException(e); + } + + if (state == 'Complete') { + // avoid memory leak in MSIE: clean up + this.transport.onreadystatechange = Prototype.emptyFunction; + } + }, + + getHeader: function(name) { + try { + return this.transport.getResponseHeader(name); + } catch (e) { return null } + }, + + evalJSON: function() { + try { + var json = this.getHeader('X-JSON'); + return json ? eval('(' + json + ')') : null; + } catch (e) { return null } + }, + + evalResponse: function() { + try { + return eval(this.transport.responseText); + } catch (e) { + this.dispatchException(e); + } + }, + + dispatchException: function(exception) { + (this.options.onException || Prototype.emptyFunction)(this, exception); + Ajax.Responders.dispatch('onException', this, exception); + } +}); + +Ajax.Updater = Class.create(); + +Object.extend(Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype), { + initialize: function(container, url, options) { + this.container = { + success: (container.success || container), + failure: (container.failure || (container.success ? null : container)) + } + + this.transport = Ajax.getTransport(); + this.setOptions(options); + + var onComplete = this.options.onComplete || Prototype.emptyFunction; + this.options.onComplete = (function(transport, param) { + this.updateContent(); + onComplete(transport, param); + }).bind(this); + + this.request(url); + }, + + updateContent: function() { + var receiver = this.container[this.success() ? 'success' : 'failure']; + var response = this.transport.responseText; + + if (!this.options.evalScripts) response = response.stripScripts(); + + if (receiver = $(receiver)) { + if (this.options.insertion) + new this.options.insertion(receiver, response); + else + receiver.update(response); + } + + if (this.success()) { + if (this.onComplete) + setTimeout(this.onComplete.bind(this), 10); + } + } +}); + +Ajax.PeriodicalUpdater = Class.create(); +Ajax.PeriodicalUpdater.prototype = Object.extend(new Ajax.Base(), { + initialize: function(container, url, options) { + this.setOptions(options); + this.onComplete = this.options.onComplete; + + this.frequency = (this.options.frequency || 2); + this.decay = (this.options.decay || 1); + + this.updater = {}; + this.container = container; + this.url = url; + + this.start(); + }, + + start: function() { + this.options.onComplete = this.updateComplete.bind(this); + this.onTimerEvent(); + }, + + stop: function() { + this.updater.options.onComplete = undefined; + clearTimeout(this.timer); + (this.onComplete || Prototype.emptyFunction).apply(this, arguments); + }, + + updateComplete: function(request) { + if (this.options.decay) { + this.decay = (request.responseText == this.lastText ? + this.decay * this.options.decay : 1); + + this.lastText = request.responseText; + } + this.timer = setTimeout(this.onTimerEvent.bind(this), + this.decay * this.frequency * 1000); + }, + + onTimerEvent: function() { + this.updater = new Ajax.Updater(this.container, this.url, this.options); + } +}); +function $(element) { + if (arguments.length > 1) { + for (var i = 0, elements = [], length = arguments.length; i < length; i++) + elements.push($(arguments[i])); + return elements; + } + if (typeof element == 'string') + element = document.getElementById(element); + return Element.extend(element); +} + +if (Prototype.BrowserFeatures.XPath) { + document._getElementsByXPath = function(expression, parentElement) { + var results = []; + var query = document.evaluate(expression, $(parentElement) || document, + null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); + for (var i = 0, length = query.snapshotLength; i < length; i++) + results.push(query.snapshotItem(i)); + return results; + }; +} + +document.getElementsByClassName = function(className, parentElement) { + if (Prototype.BrowserFeatures.XPath) { + var q = ".//*[contains(concat(' ', @class, ' '), ' " + className + " ')]"; + return document._getElementsByXPath(q, parentElement); + } else { + var children = ($(parentElement) || document.body).getElementsByTagName('*'); + var elements = [], child; + for (var i = 0, length = children.length; i < length; i++) { + child = children[i]; + if (Element.hasClassName(child, className)) + elements.push(Element.extend(child)); + } + return elements; + } +}; + +/*--------------------------------------------------------------------------*/ + +if (!window.Element) + var Element = new Object(); + +Element.extend = function(element) { + if (!element || _nativeExtensions || element.nodeType == 3) return element; + + if (!element._extended && element.tagName && element != window) { + var methods = Object.clone(Element.Methods), cache = Element.extend.cache; + + if (element.tagName == 'FORM') + Object.extend(methods, Form.Methods); + if (['INPUT', 'TEXTAREA', 'SELECT'].include(element.tagName)) + Object.extend(methods, Form.Element.Methods); + + Object.extend(methods, Element.Methods.Simulated); + + for (var property in methods) { + var value = methods[property]; + if (typeof value == 'function' && !(property in element)) + element[property] = cache.findOrStore(value); + } + } + + element._extended = true; + return element; +}; + +Element.extend.cache = { + findOrStore: function(value) { + return this[value] = this[value] || function() { + return value.apply(null, [this].concat($A(arguments))); + } + } +}; + +Element.Methods = { + visible: function(element) { + return $(element).style.display != 'none'; + }, + + toggle: function(element) { + element = $(element); + Element[Element.visible(element) ? 'hide' : 'show'](element); + return element; + }, + + hide: function(element) { + $(element).style.display = 'none'; + return element; + }, + + show: function(element) { + $(element).style.display = ''; + return element; + }, + + remove: function(element) { + element = $(element); + element.parentNode.removeChild(element); + return element; + }, + + update: function(element, html) { + html = typeof html == 'undefined' ? '' : html.toString(); + $(element).innerHTML = html.stripScripts(); + setTimeout(function() {html.evalScripts()}, 10); + return element; + }, + + replace: function(element, html) { + element = $(element); + html = typeof html == 'undefined' ? '' : html.toString(); + if (element.outerHTML) { + element.outerHTML = html.stripScripts(); + } else { + var range = element.ownerDocument.createRange(); + range.selectNodeContents(element); + element.parentNode.replaceChild( + range.createContextualFragment(html.stripScripts()), element); + } + setTimeout(function() {html.evalScripts()}, 10); + return element; + }, + + inspect: function(element) { + element = $(element); + var result = '<' + element.tagName.toLowerCase(); + $H({'id': 'id', 'className': 'class'}).each(function(pair) { + var property = pair.first(), attribute = pair.last(); + var value = (element[property] || '').toString(); + if (value) result += ' ' + attribute + '=' + value.inspect(true); + }); + return result + '>'; + }, + + recursivelyCollect: function(element, property) { + element = $(element); + var elements = []; + while (element = element[property]) + if (element.nodeType == 1) + elements.push(Element.extend(element)); + return elements; + }, + + ancestors: function(element) { + return $(element).recursivelyCollect('parentNode'); + }, + + descendants: function(element) { + return $A($(element).getElementsByTagName('*')); + }, + + immediateDescendants: function(element) { + if (!(element = $(element).firstChild)) return []; + while (element && element.nodeType != 1) element = element.nextSibling; + if (element) return [element].concat($(element).nextSiblings()); + return []; + }, + + previousSiblings: function(element) { + return $(element).recursivelyCollect('previousSibling'); + }, + + nextSiblings: function(element) { + return $(element).recursivelyCollect('nextSibling'); + }, + + siblings: function(element) { + element = $(element); + return element.previousSiblings().reverse().concat(element.nextSiblings()); + }, + + match: function(element, selector) { + if (typeof selector == 'string') + selector = new Selector(selector); + return selector.match($(element)); + }, + + up: function(element, expression, index) { + return Selector.findElement($(element).ancestors(), expression, index); + }, + + down: function(element, expression, index) { + return Selector.findElement($(element).descendants(), expression, index); + }, + + previous: function(element, expression, index) { + return Selector.findElement($(element).previousSiblings(), expression, index); + }, + + next: function(element, expression, index) { + return Selector.findElement($(element).nextSiblings(), expression, index); + }, + + getElementsBySelector: function() { + var args = $A(arguments), element = $(args.shift()); + return Selector.findChildElements(element, args); + }, + + getElementsByClassName: function(element, className) { + return document.getElementsByClassName(className, element); + }, + + readAttribute: function(element, name) { + element = $(element); + if (document.all && !window.opera) { + var t = Element._attributeTranslations; + if (t.values[name]) return t.values[name](element, name); + if (t.names[name]) name = t.names[name]; + var attribute = element.attributes[name]; + if(attribute) return attribute.nodeValue; + } + return element.getAttribute(name); + }, + + getHeight: function(element) { + return $(element).getDimensions().height; + }, + + getWidth: function(element) { + return $(element).getDimensions().width; + }, + + classNames: function(element) { + return new Element.ClassNames(element); + }, + + hasClassName: function(element, className) { + if (!(element = $(element))) return; + var elementClassName = element.className; + if (elementClassName.length == 0) return false; + if (elementClassName == className || + elementClassName.match(new RegExp("(^|\\s)" + className + "(\\s|$)"))) + return true; + return false; + }, + + addClassName: function(element, className) { + if (!(element = $(element))) return; + Element.classNames(element).add(className); + return element; + }, + + removeClassName: function(element, className) { + if (!(element = $(element))) return; + Element.classNames(element).remove(className); + return element; + }, + + toggleClassName: function(element, className) { + if (!(element = $(element))) return; + Element.classNames(element)[element.hasClassName(className) ? 'remove' : 'add'](className); + return element; + }, + + observe: function() { + Event.observe.apply(Event, arguments); + return $A(arguments).first(); + }, + + stopObserving: function() { + Event.stopObserving.apply(Event, arguments); + return $A(arguments).first(); + }, + + // removes whitespace-only text node children + cleanWhitespace: function(element) { + element = $(element); + var node = element.firstChild; + while (node) { + var nextNode = node.nextSibling; + if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) + element.removeChild(node); + node = nextNode; + } + return element; + }, + + empty: function(element) { + return $(element).innerHTML.match(/^\s*$/); + }, + + descendantOf: function(element, ancestor) { + element = $(element), ancestor = $(ancestor); + while (element = element.parentNode) + if (element == ancestor) return true; + return false; + }, + + scrollTo: function(element) { + element = $(element); + var pos = Position.cumulativeOffset(element); + window.scrollTo(pos[0], pos[1]); + return element; + }, + + getStyle: function(element, style) { + element = $(element); + if (['float','cssFloat'].include(style)) + style = (typeof element.style.styleFloat != 'undefined' ? 'styleFloat' : 'cssFloat'); + style = style.camelize(); + var value = element.style[style]; + if (!value) { + if (document.defaultView && document.defaultView.getComputedStyle) { + var css = document.defaultView.getComputedStyle(element, null); + value = css ? css[style] : null; + } else if (element.currentStyle) { + value = element.currentStyle[style]; + } + } + + if((value == 'auto') && ['width','height'].include(style) && (element.getStyle('display') != 'none')) + value = element['offset'+style.capitalize()] + 'px'; + + if (window.opera && ['left', 'top', 'right', 'bottom'].include(style)) + if (Element.getStyle(element, 'position') == 'static') value = 'auto'; + if(style == 'opacity') { + if(value) return parseFloat(value); + if(value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/)) + if(value[1]) return parseFloat(value[1]) / 100; + return 1.0; + } + return value == 'auto' ? null : value; + }, + + setStyle: function(element, style) { + element = $(element); + for (var name in style) { + var value = style[name]; + if(name == 'opacity') { + if (value == 1) { + value = (/Gecko/.test(navigator.userAgent) && + !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ? 0.999999 : 1.0; + if(/MSIE/.test(navigator.userAgent) && !window.opera) + element.style.filter = element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,''); + } else if(value == '') { + if(/MSIE/.test(navigator.userAgent) && !window.opera) + element.style.filter = element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,''); + } else { + if(value < 0.00001) value = 0; + if(/MSIE/.test(navigator.userAgent) && !window.opera) + element.style.filter = element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'') + + 'alpha(opacity='+value*100+')'; + } + } else if(['float','cssFloat'].include(name)) name = (typeof element.style.styleFloat != 'undefined') ? 'styleFloat' : 'cssFloat'; + element.style[name.camelize()] = value; + } + return element; + }, + + getDimensions: function(element) { + element = $(element); + var display = $(element).getStyle('display'); + if (display != 'none' && display != null) // Safari bug + return {width: element.offsetWidth, height: element.offsetHeight}; + + // All *Width and *Height properties give 0 on elements with display none, + // so enable the element temporarily + var els = element.style; + var originalVisibility = els.visibility; + var originalPosition = els.position; + var originalDisplay = els.display; + els.visibility = 'hidden'; + els.position = 'absolute'; + els.display = 'block'; + var originalWidth = element.clientWidth; + var originalHeight = element.clientHeight; + els.display = originalDisplay; + els.position = originalPosition; + els.visibility = originalVisibility; + return {width: originalWidth, height: originalHeight}; + }, + + makePositioned: function(element) { + element = $(element); + var pos = Element.getStyle(element, 'position'); + if (pos == 'static' || !pos) { + element._madePositioned = true; + element.style.position = 'relative'; + // Opera returns the offset relative to the positioning context, when an + // element is position relative but top and left have not been defined + if (window.opera) { + element.style.top = 0; + element.style.left = 0; + } + } + return element; + }, + + undoPositioned: function(element) { + element = $(element); + if (element._madePositioned) { + element._madePositioned = undefined; + element.style.position = + element.style.top = + element.style.left = + element.style.bottom = + element.style.right = ''; + } + return element; + }, + + makeClipping: function(element) { + element = $(element); + if (element._overflow) return element; + element._overflow = element.style.overflow || 'auto'; + if ((Element.getStyle(element, 'overflow') || 'visible') != 'hidden') + element.style.overflow = 'hidden'; + return element; + }, + + undoClipping: function(element) { + element = $(element); + if (!element._overflow) return element; + element.style.overflow = element._overflow == 'auto' ? '' : element._overflow; + element._overflow = null; + return element; + } +}; + +Object.extend(Element.Methods, {childOf: Element.Methods.descendantOf}); + +Element._attributeTranslations = {}; + +Element._attributeTranslations.names = { + colspan: "colSpan", + rowspan: "rowSpan", + valign: "vAlign", + datetime: "dateTime", + accesskey: "accessKey", + tabindex: "tabIndex", + enctype: "encType", + maxlength: "maxLength", + readonly: "readOnly", + longdesc: "longDesc" +}; + +Element._attributeTranslations.values = { + _getAttr: function(element, attribute) { + return element.getAttribute(attribute, 2); + }, + + _flag: function(element, attribute) { + return $(element).hasAttribute(attribute) ? attribute : null; + }, + + style: function(element) { + return element.style.cssText.toLowerCase(); + }, + + title: function(element) { + var node = element.getAttributeNode('title'); + return node.specified ? node.nodeValue : null; + } +}; + +Object.extend(Element._attributeTranslations.values, { + href: Element._attributeTranslations.values._getAttr, + src: Element._attributeTranslations.values._getAttr, + disabled: Element._attributeTranslations.values._flag, + checked: Element._attributeTranslations.values._flag, + readonly: Element._attributeTranslations.values._flag, + multiple: Element._attributeTranslations.values._flag +}); + +Element.Methods.Simulated = { + hasAttribute: function(element, attribute) { + var t = Element._attributeTranslations; + attribute = t.names[attribute] || attribute; + return $(element).getAttributeNode(attribute).specified; + } +}; + +// IE is missing .innerHTML support for TABLE-related elements +if (document.all && !window.opera){ + Element.Methods.update = function(element, html) { + element = $(element); + html = typeof html == 'undefined' ? '' : html.toString(); + var tagName = element.tagName.toUpperCase(); + if (['THEAD','TBODY','TR','TD'].include(tagName)) { + var div = document.createElement('div'); + switch (tagName) { + case 'THEAD': + case 'TBODY': + div.innerHTML = '' + html.stripScripts() + '
    '; + depth = 2; + break; + case 'TR': + div.innerHTML = '' + html.stripScripts() + '
    '; + depth = 3; + break; + case 'TD': + div.innerHTML = '
    ' + html.stripScripts() + '
    '; + depth = 4; + } + $A(element.childNodes).each(function(node){ + element.removeChild(node) + }); + depth.times(function(){ div = div.firstChild }); + + $A(div.childNodes).each( + function(node){ element.appendChild(node) }); + } else { + element.innerHTML = html.stripScripts(); + } + setTimeout(function() {html.evalScripts()}, 10); + return element; + } +}; + +Object.extend(Element, Element.Methods); + +var _nativeExtensions = false; + +if(/Konqueror|Safari|KHTML/.test(navigator.userAgent)) + ['', 'Form', 'Input', 'TextArea', 'Select'].each(function(tag) { + var className = 'HTML' + tag + 'Element'; + if(window[className]) return; + var klass = window[className] = {}; + klass.prototype = document.createElement(tag ? tag.toLowerCase() : 'div').__proto__; + }); + +Element.addMethods = function(methods) { + Object.extend(Element.Methods, methods || {}); + + function copy(methods, destination, onlyIfAbsent) { + onlyIfAbsent = onlyIfAbsent || false; + var cache = Element.extend.cache; + for (var property in methods) { + var value = methods[property]; + if (!onlyIfAbsent || !(property in destination)) + destination[property] = cache.findOrStore(value); + } + } + + if (typeof HTMLElement != 'undefined') { + copy(Element.Methods, HTMLElement.prototype); + copy(Element.Methods.Simulated, HTMLElement.prototype, true); + copy(Form.Methods, HTMLFormElement.prototype); + [HTMLInputElement, HTMLTextAreaElement, HTMLSelectElement].each(function(klass) { + copy(Form.Element.Methods, klass.prototype); + }); + _nativeExtensions = true; + } +} + +var Toggle = new Object(); +Toggle.display = Element.toggle; + +/*--------------------------------------------------------------------------*/ + +Abstract.Insertion = function(adjacency) { + this.adjacency = adjacency; +} + +Abstract.Insertion.prototype = { + initialize: function(element, content) { + this.element = $(element); + this.content = content.stripScripts(); + + if (this.adjacency && this.element.insertAdjacentHTML) { + try { + this.element.insertAdjacentHTML(this.adjacency, this.content); + } catch (e) { + var tagName = this.element.tagName.toUpperCase(); + if (['TBODY', 'TR'].include(tagName)) { + this.insertContent(this.contentFromAnonymousTable()); + } else { + throw e; + } + } + } else { + this.range = this.element.ownerDocument.createRange(); + if (this.initializeRange) this.initializeRange(); + this.insertContent([this.range.createContextualFragment(this.content)]); + } + + setTimeout(function() {content.evalScripts()}, 10); + }, + + contentFromAnonymousTable: function() { + var div = document.createElement('div'); + div.innerHTML = '' + this.content + '
    '; + return $A(div.childNodes[0].childNodes[0].childNodes); + } +} + +var Insertion = new Object(); + +Insertion.Before = Class.create(); +Insertion.Before.prototype = Object.extend(new Abstract.Insertion('beforeBegin'), { + initializeRange: function() { + this.range.setStartBefore(this.element); + }, + + insertContent: function(fragments) { + fragments.each((function(fragment) { + this.element.parentNode.insertBefore(fragment, this.element); + }).bind(this)); + } +}); + +Insertion.Top = Class.create(); +Insertion.Top.prototype = Object.extend(new Abstract.Insertion('afterBegin'), { + initializeRange: function() { + this.range.selectNodeContents(this.element); + this.range.collapse(true); + }, + + insertContent: function(fragments) { + fragments.reverse(false).each((function(fragment) { + this.element.insertBefore(fragment, this.element.firstChild); + }).bind(this)); + } +}); + +Insertion.Bottom = Class.create(); +Insertion.Bottom.prototype = Object.extend(new Abstract.Insertion('beforeEnd'), { + initializeRange: function() { + this.range.selectNodeContents(this.element); + this.range.collapse(this.element); + }, + + insertContent: function(fragments) { + fragments.each((function(fragment) { + this.element.appendChild(fragment); + }).bind(this)); + } +}); + +Insertion.After = Class.create(); +Insertion.After.prototype = Object.extend(new Abstract.Insertion('afterEnd'), { + initializeRange: function() { + this.range.setStartAfter(this.element); + }, + + insertContent: function(fragments) { + fragments.each((function(fragment) { + this.element.parentNode.insertBefore(fragment, + this.element.nextSibling); + }).bind(this)); + } +}); + +/*--------------------------------------------------------------------------*/ + +Element.ClassNames = Class.create(); +Element.ClassNames.prototype = { + initialize: function(element) { + this.element = $(element); + }, + + _each: function(iterator) { + this.element.className.split(/\s+/).select(function(name) { + return name.length > 0; + })._each(iterator); + }, + + set: function(className) { + this.element.className = className; + }, + + add: function(classNameToAdd) { + if (this.include(classNameToAdd)) return; + this.set($A(this).concat(classNameToAdd).join(' ')); + }, + + remove: function(classNameToRemove) { + if (!this.include(classNameToRemove)) return; + this.set($A(this).without(classNameToRemove).join(' ')); + }, + + toString: function() { + return $A(this).join(' '); + } +}; + +Object.extend(Element.ClassNames.prototype, Enumerable); +var Selector = Class.create(); +Selector.prototype = { + initialize: function(expression) { + this.params = {classNames: []}; + this.expression = expression.toString().strip(); + this.parseExpression(); + this.compileMatcher(); + }, + + parseExpression: function() { + function abort(message) { throw 'Parse error in selector: ' + message; } + + if (this.expression == '') abort('empty expression'); + + var params = this.params, expr = this.expression, match, modifier, clause, rest; + while (match = expr.match(/^(.*)\[([a-z0-9_:-]+?)(?:([~\|!]?=)(?:"([^"]*)"|([^\]\s]*)))?\]$/i)) { + params.attributes = params.attributes || []; + params.attributes.push({name: match[2], operator: match[3], value: match[4] || match[5] || ''}); + expr = match[1]; + } + + if (expr == '*') return this.params.wildcard = true; + + while (match = expr.match(/^([^a-z0-9_-])?([a-z0-9_-]+)(.*)/i)) { + modifier = match[1], clause = match[2], rest = match[3]; + switch (modifier) { + case '#': params.id = clause; break; + case '.': params.classNames.push(clause); break; + case '': + case undefined: params.tagName = clause.toUpperCase(); break; + default: abort(expr.inspect()); + } + expr = rest; + } + + if (expr.length > 0) abort(expr.inspect()); + }, + + buildMatchExpression: function() { + var params = this.params, conditions = [], clause; + + if (params.wildcard) + conditions.push('true'); + if (clause = params.id) + conditions.push('element.readAttribute("id") == ' + clause.inspect()); + if (clause = params.tagName) + conditions.push('element.tagName.toUpperCase() == ' + clause.inspect()); + if ((clause = params.classNames).length > 0) + for (var i = 0, length = clause.length; i < length; i++) + conditions.push('element.hasClassName(' + clause[i].inspect() + ')'); + if (clause = params.attributes) { + clause.each(function(attribute) { + var value = 'element.readAttribute(' + attribute.name.inspect() + ')'; + var splitValueBy = function(delimiter) { + return value + ' && ' + value + '.split(' + delimiter.inspect() + ')'; + } + + switch (attribute.operator) { + case '=': conditions.push(value + ' == ' + attribute.value.inspect()); break; + case '~=': conditions.push(splitValueBy(' ') + '.include(' + attribute.value.inspect() + ')'); break; + case '|=': conditions.push( + splitValueBy('-') + '.first().toUpperCase() == ' + attribute.value.toUpperCase().inspect() + ); break; + case '!=': conditions.push(value + ' != ' + attribute.value.inspect()); break; + case '': + case undefined: conditions.push('element.hasAttribute(' + attribute.name.inspect() + ')'); break; + default: throw 'Unknown operator ' + attribute.operator + ' in selector'; + } + }); + } + + return conditions.join(' && '); + }, + + compileMatcher: function() { + this.match = new Function('element', 'if (!element.tagName) return false; \ + element = $(element); \ + return ' + this.buildMatchExpression()); + }, + + findElements: function(scope) { + var element; + + if (element = $(this.params.id)) + if (this.match(element)) + if (!scope || Element.childOf(element, scope)) + return [element]; + + scope = (scope || document).getElementsByTagName(this.params.tagName || '*'); + + var results = []; + for (var i = 0, length = scope.length; i < length; i++) + if (this.match(element = scope[i])) + results.push(Element.extend(element)); + + return results; + }, + + toString: function() { + return this.expression; + } +} + +Object.extend(Selector, { + matchElements: function(elements, expression) { + var selector = new Selector(expression); + return elements.select(selector.match.bind(selector)).map(Element.extend); + }, + + findElement: function(elements, expression, index) { + if (typeof expression == 'number') index = expression, expression = false; + return Selector.matchElements(elements, expression || '*')[index || 0]; + }, + + findChildElements: function(element, expressions) { + return expressions.map(function(expression) { + return expression.match(/[^\s"]+(?:"[^"]*"[^\s"]+)*/g).inject([null], function(results, expr) { + var selector = new Selector(expr); + return results.inject([], function(elements, result) { + return elements.concat(selector.findElements(result || element)); + }); + }); + }).flatten(); + } +}); + +function $$() { + return Selector.findChildElements(document, $A(arguments)); +} +var Form = { + reset: function(form) { + $(form).reset(); + return form; + }, + + serializeElements: function(elements, getHash) { + var data = elements.inject({}, function(result, element) { + if (!element.disabled && element.name) { + var key = element.name, value = $(element).getValue(); + if (value != undefined) { + if (result[key]) { + if (result[key].constructor != Array) result[key] = [result[key]]; + result[key].push(value); + } + else result[key] = value; + } + } + return result; + }); + + return getHash ? data : Hash.toQueryString(data); + } +}; + +Form.Methods = { + serialize: function(form, getHash) { + return Form.serializeElements(Form.getElements(form), getHash); + }, + + getElements: function(form) { + return $A($(form).getElementsByTagName('*')).inject([], + function(elements, child) { + if (Form.Element.Serializers[child.tagName.toLowerCase()]) + elements.push(Element.extend(child)); + return elements; + } + ); + }, + + getInputs: function(form, typeName, name) { + form = $(form); + var inputs = form.getElementsByTagName('input'); + + if (!typeName && !name) return $A(inputs).map(Element.extend); + + for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) { + var input = inputs[i]; + if ((typeName && input.type != typeName) || (name && input.name != name)) + continue; + matchingInputs.push(Element.extend(input)); + } + + return matchingInputs; + }, + + disable: function(form) { + form = $(form); + form.getElements().each(function(element) { + element.blur(); + element.disabled = 'true'; + }); + return form; + }, + + enable: function(form) { + form = $(form); + form.getElements().each(function(element) { + element.disabled = ''; + }); + return form; + }, + + findFirstElement: function(form) { + return $(form).getElements().find(function(element) { + return element.type != 'hidden' && !element.disabled && + ['input', 'select', 'textarea'].include(element.tagName.toLowerCase()); + }); + }, + + focusFirstElement: function(form) { + form = $(form); + form.findFirstElement().activate(); + return form; + } +} + +Object.extend(Form, Form.Methods); + +/*--------------------------------------------------------------------------*/ + +Form.Element = { + focus: function(element) { + $(element).focus(); + return element; + }, + + select: function(element) { + $(element).select(); + return element; + } +} + +Form.Element.Methods = { + serialize: function(element) { + element = $(element); + if (!element.disabled && element.name) { + var value = element.getValue(); + if (value != undefined) { + var pair = {}; + pair[element.name] = value; + return Hash.toQueryString(pair); + } + } + return ''; + }, + + getValue: function(element) { + element = $(element); + var method = element.tagName.toLowerCase(); + return Form.Element.Serializers[method](element); + }, + + clear: function(element) { + $(element).value = ''; + return element; + }, + + present: function(element) { + return $(element).value != ''; + }, + + activate: function(element) { + element = $(element); + element.focus(); + if (element.select && ( element.tagName.toLowerCase() != 'input' || + !['button', 'reset', 'submit'].include(element.type) ) ) + element.select(); + return element; + }, + + disable: function(element) { + element = $(element); + element.disabled = true; + return element; + }, + + enable: function(element) { + element = $(element); + element.blur(); + element.disabled = false; + return element; + } +} + +Object.extend(Form.Element, Form.Element.Methods); +var Field = Form.Element; +var $F = Form.Element.getValue; + +/*--------------------------------------------------------------------------*/ + +Form.Element.Serializers = { + input: function(element) { + switch (element.type.toLowerCase()) { + case 'checkbox': + case 'radio': + return Form.Element.Serializers.inputSelector(element); + default: + return Form.Element.Serializers.textarea(element); + } + }, + + inputSelector: function(element) { + return element.checked ? element.value : null; + }, + + textarea: function(element) { + return element.value; + }, + + select: function(element) { + return this[element.type == 'select-one' ? + 'selectOne' : 'selectMany'](element); + }, + + selectOne: function(element) { + var index = element.selectedIndex; + return index >= 0 ? this.optionValue(element.options[index]) : null; + }, + + selectMany: function(element) { + var values, length = element.length; + if (!length) return null; + + for (var i = 0, values = []; i < length; i++) { + var opt = element.options[i]; + if (opt.selected) values.push(this.optionValue(opt)); + } + return values; + }, + + optionValue: function(opt) { + // extend element because hasAttribute may not be native + return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text; + } +} + +/*--------------------------------------------------------------------------*/ + +Abstract.TimedObserver = function() {} +Abstract.TimedObserver.prototype = { + initialize: function(element, frequency, callback) { + this.frequency = frequency; + this.element = $(element); + this.callback = callback; + + this.lastValue = this.getValue(); + this.registerCallback(); + }, + + registerCallback: function() { + setInterval(this.onTimerEvent.bind(this), this.frequency * 1000); + }, + + onTimerEvent: function() { + var value = this.getValue(); + var changed = ('string' == typeof this.lastValue && 'string' == typeof value + ? this.lastValue != value : String(this.lastValue) != String(value)); + if (changed) { + this.callback(this.element, value); + this.lastValue = value; + } + } +} + +Form.Element.Observer = Class.create(); +Form.Element.Observer.prototype = Object.extend(new Abstract.TimedObserver(), { + getValue: function() { + return Form.Element.getValue(this.element); + } +}); + +Form.Observer = Class.create(); +Form.Observer.prototype = Object.extend(new Abstract.TimedObserver(), { + getValue: function() { + return Form.serialize(this.element); + } +}); + +/*--------------------------------------------------------------------------*/ + +Abstract.EventObserver = function() {} +Abstract.EventObserver.prototype = { + initialize: function(element, callback) { + this.element = $(element); + this.callback = callback; + + this.lastValue = this.getValue(); + if (this.element.tagName.toLowerCase() == 'form') + this.registerFormCallbacks(); + else + this.registerCallback(this.element); + }, + + onElementEvent: function() { + var value = this.getValue(); + if (this.lastValue != value) { + this.callback(this.element, value); + this.lastValue = value; + } + }, + + registerFormCallbacks: function() { + Form.getElements(this.element).each(this.registerCallback.bind(this)); + }, + + registerCallback: function(element) { + if (element.type) { + switch (element.type.toLowerCase()) { + case 'checkbox': + case 'radio': + Event.observe(element, 'click', this.onElementEvent.bind(this)); + break; + default: + Event.observe(element, 'change', this.onElementEvent.bind(this)); + break; + } + } + } +} + +Form.Element.EventObserver = Class.create(); +Form.Element.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), { + getValue: function() { + return Form.Element.getValue(this.element); + } +}); + +Form.EventObserver = Class.create(); +Form.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), { + getValue: function() { + return Form.serialize(this.element); + } +}); +if (!window.Event) { + var Event = new Object(); +} + +Object.extend(Event, { + KEY_BACKSPACE: 8, + KEY_TAB: 9, + KEY_RETURN: 13, + KEY_ESC: 27, + KEY_LEFT: 37, + KEY_UP: 38, + KEY_RIGHT: 39, + KEY_DOWN: 40, + KEY_DELETE: 46, + KEY_HOME: 36, + KEY_END: 35, + KEY_PAGEUP: 33, + KEY_PAGEDOWN: 34, + + element: function(event) { + return event.target || event.srcElement; + }, + + isLeftClick: function(event) { + return (((event.which) && (event.which == 1)) || + ((event.button) && (event.button == 1))); + }, + + pointerX: function(event) { + return event.pageX || (event.clientX + + (document.documentElement.scrollLeft || document.body.scrollLeft)); + }, + + pointerY: function(event) { + return event.pageY || (event.clientY + + (document.documentElement.scrollTop || document.body.scrollTop)); + }, + + stop: function(event) { + if (event.preventDefault) { + event.preventDefault(); + event.stopPropagation(); + } else { + event.returnValue = false; + event.cancelBubble = true; + } + }, + + // find the first node with the given tagName, starting from the + // node the event was triggered on; traverses the DOM upwards + findElement: function(event, tagName) { + var element = Event.element(event); + while (element.parentNode && (!element.tagName || + (element.tagName.toUpperCase() != tagName.toUpperCase()))) + element = element.parentNode; + return element; + }, + + observers: false, + + _observeAndCache: function(element, name, observer, useCapture) { + if (!this.observers) this.observers = []; + if (element.addEventListener) { + this.observers.push([element, name, observer, useCapture]); + element.addEventListener(name, observer, useCapture); + } else if (element.attachEvent) { + this.observers.push([element, name, observer, useCapture]); + element.attachEvent('on' + name, observer); + } + }, + + unloadCache: function() { + if (!Event.observers) return; + for (var i = 0, length = Event.observers.length; i < length; i++) { + Event.stopObserving.apply(this, Event.observers[i]); + Event.observers[i][0] = null; + } + Event.observers = false; + }, + + observe: function(element, name, observer, useCapture) { + element = $(element); + useCapture = useCapture || false; + + if (name == 'keypress' && + (navigator.appVersion.match(/Konqueror|Safari|KHTML/) + || element.attachEvent)) + name = 'keydown'; + + Event._observeAndCache(element, name, observer, useCapture); + }, + + stopObserving: function(element, name, observer, useCapture) { + element = $(element); + useCapture = useCapture || false; + + if (name == 'keypress' && + (navigator.appVersion.match(/Konqueror|Safari|KHTML/) + || element.detachEvent)) + name = 'keydown'; + + if (element.removeEventListener) { + element.removeEventListener(name, observer, useCapture); + } else if (element.detachEvent) { + try { + element.detachEvent('on' + name, observer); + } catch (e) {} + } + } +}); + +/* prevent memory leaks in IE */ +if (navigator.appVersion.match(/\bMSIE\b/)) + Event.observe(window, 'unload', Event.unloadCache, false); +var Position = { + // set to true if needed, warning: firefox performance problems + // NOT neeeded for page scrolling, only if draggable contained in + // scrollable elements + includeScrollOffsets: false, + + // must be called before calling withinIncludingScrolloffset, every time the + // page is scrolled + prepare: function() { + this.deltaX = window.pageXOffset + || document.documentElement.scrollLeft + || document.body.scrollLeft + || 0; + this.deltaY = window.pageYOffset + || document.documentElement.scrollTop + || document.body.scrollTop + || 0; + }, + + realOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.scrollTop || 0; + valueL += element.scrollLeft || 0; + element = element.parentNode; + } while (element); + return [valueL, valueT]; + }, + + cumulativeOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + element = element.offsetParent; + } while (element); + return [valueL, valueT]; + }, + + positionedOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + element = element.offsetParent; + if (element) { + if(element.tagName=='BODY') break; + var p = Element.getStyle(element, 'position'); + if (p == 'relative' || p == 'absolute') break; + } + } while (element); + return [valueL, valueT]; + }, + + offsetParent: function(element) { + if (element.offsetParent) return element.offsetParent; + if (element == document.body) return element; + + while ((element = element.parentNode) && element != document.body) + if (Element.getStyle(element, 'position') != 'static') + return element; + + return document.body; + }, + + // caches x/y coordinate pair to use with overlap + within: function(element, x, y) { + if (this.includeScrollOffsets) + return this.withinIncludingScrolloffsets(element, x, y); + this.xcomp = x; + this.ycomp = y; + this.offset = this.cumulativeOffset(element); + + return (y >= this.offset[1] && + y < this.offset[1] + element.offsetHeight && + x >= this.offset[0] && + x < this.offset[0] + element.offsetWidth); + }, + + withinIncludingScrolloffsets: function(element, x, y) { + var offsetcache = this.realOffset(element); + + this.xcomp = x + offsetcache[0] - this.deltaX; + this.ycomp = y + offsetcache[1] - this.deltaY; + this.offset = this.cumulativeOffset(element); + + return (this.ycomp >= this.offset[1] && + this.ycomp < this.offset[1] + element.offsetHeight && + this.xcomp >= this.offset[0] && + this.xcomp < this.offset[0] + element.offsetWidth); + }, + + // within must be called directly before + overlap: function(mode, element) { + if (!mode) return 0; + if (mode == 'vertical') + return ((this.offset[1] + element.offsetHeight) - this.ycomp) / + element.offsetHeight; + if (mode == 'horizontal') + return ((this.offset[0] + element.offsetWidth) - this.xcomp) / + element.offsetWidth; + }, + + page: function(forElement) { + var valueT = 0, valueL = 0; + + var element = forElement; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + + // Safari fix + if (element.offsetParent==document.body) + if (Element.getStyle(element,'position')=='absolute') break; + + } while (element = element.offsetParent); + + element = forElement; + do { + if (!window.opera || element.tagName=='BODY') { + valueT -= element.scrollTop || 0; + valueL -= element.scrollLeft || 0; + } + } while (element = element.parentNode); + + return [valueL, valueT]; + }, + + clone: function(source, target) { + var options = Object.extend({ + setLeft: true, + setTop: true, + setWidth: true, + setHeight: true, + offsetTop: 0, + offsetLeft: 0 + }, arguments[2] || {}) + + // find page position of source + source = $(source); + var p = Position.page(source); + + // find coordinate system to use + target = $(target); + var delta = [0, 0]; + var parent = null; + // delta [0,0] will do fine with position: fixed elements, + // position:absolute needs offsetParent deltas + if (Element.getStyle(target,'position') == 'absolute') { + parent = Position.offsetParent(target); + delta = Position.page(parent); + } + + // correct by body offsets (fixes Safari) + if (parent == document.body) { + delta[0] -= document.body.offsetLeft; + delta[1] -= document.body.offsetTop; + } + + // set position + if(options.setLeft) target.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px'; + if(options.setTop) target.style.top = (p[1] - delta[1] + options.offsetTop) + 'px'; + if(options.setWidth) target.style.width = source.offsetWidth + 'px'; + if(options.setHeight) target.style.height = source.offsetHeight + 'px'; + }, + + absolutize: function(element) { + element = $(element); + if (element.style.position == 'absolute') return; + Position.prepare(); + + var offsets = Position.positionedOffset(element); + var top = offsets[1]; + var left = offsets[0]; + var width = element.clientWidth; + var height = element.clientHeight; + + element._originalLeft = left - parseFloat(element.style.left || 0); + element._originalTop = top - parseFloat(element.style.top || 0); + element._originalWidth = element.style.width; + element._originalHeight = element.style.height; + + element.style.position = 'absolute'; + element.style.top = top + 'px'; + element.style.left = left + 'px'; + element.style.width = width + 'px'; + element.style.height = height + 'px'; + }, + + relativize: function(element) { + element = $(element); + if (element.style.position == 'relative') return; + Position.prepare(); + + element.style.position = 'relative'; + var top = parseFloat(element.style.top || 0) - (element._originalTop || 0); + var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0); + + element.style.top = top + 'px'; + element.style.left = left + 'px'; + element.style.height = element._originalHeight; + element.style.width = element._originalWidth; + } +} + +// Safari returns margins on body which is incorrect if the child is absolutely +// positioned. For performance reasons, redefine Position.cumulativeOffset for +// KHTML/WebKit only. +if (/Konqueror|Safari|KHTML/.test(navigator.userAgent)) { + Position.cumulativeOffset = function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + if (element.offsetParent == document.body) + if (Element.getStyle(element, 'position') == 'absolute') break; + + element = element.offsetParent; + } while (element); + + return [valueL, valueT]; + } +} + +Element.addMethods(); \ No newline at end of file diff --git a/test/rails_root/public/robots.txt b/test/rails_root/public/robots.txt new file mode 100644 index 00000000..4ab9e89f --- /dev/null +++ b/test/rails_root/public/robots.txt @@ -0,0 +1 @@ +# See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file \ No newline at end of file diff --git a/test/rails_root/public/stylesheets/scaffold.css b/test/rails_root/public/stylesheets/scaffold.css new file mode 100644 index 00000000..8f239a35 --- /dev/null +++ b/test/rails_root/public/stylesheets/scaffold.css @@ -0,0 +1,74 @@ +body { background-color: #fff; color: #333; } + +body, p, ol, ul, td { + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; +} + +pre { + background-color: #eee; + padding: 10px; + font-size: 11px; +} + +a { color: #000; } +a:visited { color: #666; } +a:hover { color: #fff; background-color:#000; } + +.fieldWithErrors { + padding: 2px; + background-color: red; + display: table; +} + +#errorExplanation { + width: 400px; + border: 2px solid red; + padding: 7px; + padding-bottom: 12px; + margin-bottom: 20px; + background-color: #f0f0f0; +} + +#errorExplanation h2 { + text-align: left; + font-weight: bold; + padding: 5px 5px 5px 15px; + font-size: 12px; + margin: -7px; + background-color: #c00; + color: #fff; +} + +#errorExplanation p { + color: #333; + margin-bottom: 0; + padding: 5px; +} + +#errorExplanation ul li { + font-size: 12px; + list-style: square; +} + +div.uploadStatus { + margin: 5px; +} + +div.progressBar { + margin: 5px; +} + +div.progressBar div.border { + background-color: #fff; + border: 1px solid grey; + width: 100%; +} + +div.progressBar div.background { + background-color: #333; + height: 18px; + width: 0%; +} + diff --git a/test/rails_root/script/about b/test/rails_root/script/about new file mode 100755 index 00000000..7b07d46a --- /dev/null +++ b/test/rails_root/script/about @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/about' \ No newline at end of file diff --git a/test/rails_root/script/breakpointer b/test/rails_root/script/breakpointer new file mode 100755 index 00000000..64af76ed --- /dev/null +++ b/test/rails_root/script/breakpointer @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/breakpointer' \ No newline at end of file diff --git a/test/rails_root/script/console b/test/rails_root/script/console new file mode 100755 index 00000000..42f28f7d --- /dev/null +++ b/test/rails_root/script/console @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/console' \ No newline at end of file diff --git a/test/rails_root/script/destroy b/test/rails_root/script/destroy new file mode 100755 index 00000000..fa0e6fcd --- /dev/null +++ b/test/rails_root/script/destroy @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/destroy' \ No newline at end of file diff --git a/test/rails_root/script/generate b/test/rails_root/script/generate new file mode 100755 index 00000000..ef976e09 --- /dev/null +++ b/test/rails_root/script/generate @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/generate' \ No newline at end of file diff --git a/test/rails_root/script/performance/benchmarker b/test/rails_root/script/performance/benchmarker new file mode 100755 index 00000000..c842d35d --- /dev/null +++ b/test/rails_root/script/performance/benchmarker @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../../config/boot' +require 'commands/performance/benchmarker' diff --git a/test/rails_root/script/performance/profiler b/test/rails_root/script/performance/profiler new file mode 100755 index 00000000..d855ac8b --- /dev/null +++ b/test/rails_root/script/performance/profiler @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../../config/boot' +require 'commands/performance/profiler' diff --git a/test/rails_root/script/plugin b/test/rails_root/script/plugin new file mode 100755 index 00000000..26ca64c0 --- /dev/null +++ b/test/rails_root/script/plugin @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/plugin' \ No newline at end of file diff --git a/test/rails_root/script/process/inspector b/test/rails_root/script/process/inspector new file mode 100755 index 00000000..bf25ad86 --- /dev/null +++ b/test/rails_root/script/process/inspector @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../../config/boot' +require 'commands/process/inspector' diff --git a/test/rails_root/script/process/reaper b/test/rails_root/script/process/reaper new file mode 100755 index 00000000..c77f0453 --- /dev/null +++ b/test/rails_root/script/process/reaper @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../../config/boot' +require 'commands/process/reaper' diff --git a/test/rails_root/script/process/spawner b/test/rails_root/script/process/spawner new file mode 100755 index 00000000..7118f398 --- /dev/null +++ b/test/rails_root/script/process/spawner @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../../config/boot' +require 'commands/process/spawner' diff --git a/test/rails_root/script/runner b/test/rails_root/script/runner new file mode 100755 index 00000000..ccc30f9d --- /dev/null +++ b/test/rails_root/script/runner @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/runner' \ No newline at end of file diff --git a/test/rails_root/script/server b/test/rails_root/script/server new file mode 100755 index 00000000..dfabcb88 --- /dev/null +++ b/test/rails_root/script/server @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +require File.dirname(__FILE__) + '/../config/boot' +require 'commands/server' \ No newline at end of file diff --git a/test/rails_root/vendor/plugins/shoulda b/test/rails_root/vendor/plugins/shoulda new file mode 120000 index 00000000..11a54ed3 --- /dev/null +++ b/test/rails_root/vendor/plugins/shoulda @@ -0,0 +1 @@ +../../../../ \ No newline at end of file diff --git a/test/support/database.yml b/test/support/database.yml deleted file mode 100755 index 50d61ad8..00000000 --- a/test/support/database.yml +++ /dev/null @@ -1,3 +0,0 @@ -sqlite3: - adapter: sqlite3 - database: ":memory:" diff --git a/test/support/schema.rb b/test/support/schema.rb deleted file mode 100755 index ff848d5f..00000000 --- a/test/support/schema.rb +++ /dev/null @@ -1,26 +0,0 @@ -ActiveRecord::Schema.define(:version => 1) do - create_table :posts do |t| - t.column :title, :string - t.column :body, :text - t.column :user_id, :integer - end - - create_table :users do |t| - t.column :name, :string - t.column :email, :string - t.column :age, :integer - t.column :password, :string - t.column :company_id, :integer - end - - create_table :taggings do |t| - t.column :user_id, :integer - t.column :tag_id, :integer - end - - create_table :tags do |t| - t.column :name, :string - end - -end - diff --git a/test/test_helper.rb b/test/test_helper.rb index b7481446..0ad4f1a9 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,28 +1,28 @@ -BASE = File.dirname(__FILE__) -$LOAD_PATH << File.join(BASE, '..', 'lib') - -require 'rubygems' -require 'test/unit' -require 'active_support' -require 'active_record' -require 'active_record/fixtures' -require 'shoulda' - -config = YAML::load(IO.read(File.join(BASE, "support", 'database.yml'))) -ActiveRecord::Base.logger = Logger.new(File.join(BASE, "support", "debug.log")) -ActiveRecord::Base.establish_connection(config['sqlite3']) +# Load the environment +ENV['RAILS_ENV'] = 'sqlite3' +require File.dirname(__FILE__) + '/rails_root/config/environment.rb' + +# Load the testing framework +require 'test_help' +silence_warnings { RAILS_ENV = ENV['RAILS_ENV'] } + +# Run the migrations ActiveRecord::Migration.verbose = false - -load(File.join(BASE, "support", "schema.rb")) - -Test::Unit::TestCase.fixture_path = File.join(BASE, "support", "fixtures") - +ActiveRecord::Migrator.migrate("#{RAILS_ROOT}/db/migrate") + +# Setup the fixtures path +Test::Unit::TestCase.fixture_path = File.join(File.dirname(__FILE__), "fixtures") +# $LOAD_PATH.unshift(Test::Unit::TestCase.fixture_path) + class Test::Unit::TestCase #:nodoc: - def self.fixtures(*args) - Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, args) - end - + def create_fixtures(*table_names) + if block_given? + Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names) { yield } + else + Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names) + end + end + self.use_transactional_fixtures = false self.use_instantiated_fixtures = false end - diff --git a/test/unit/post_test.rb b/test/unit/post_test.rb new file mode 100644 index 00000000..cb9a610e --- /dev/null +++ b/test/unit/post_test.rb @@ -0,0 +1,13 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class PostTest < Test::Unit::TestCase + load_all_fixtures + + should_belong_to :user + should_have_many :tags, :through => :taggings + + should_require_unique_attributes :title + should_require_attributes :body, :message => /wtf/ + should_require_attributes :title + should_only_allow_numeric_values_for :user_id +end diff --git a/test/unit/tag_test.rb b/test/unit/tag_test.rb new file mode 100644 index 00000000..4b0f8a2c --- /dev/null +++ b/test/unit/tag_test.rb @@ -0,0 +1,8 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class TagTest < Test::Unit::TestCase + load_all_fixtures + + should_have_many :taggings + should_have_many :posts +end diff --git a/test/unit/tagging_test.rb b/test/unit/tagging_test.rb new file mode 100644 index 00000000..dc0de102 --- /dev/null +++ b/test/unit/tagging_test.rb @@ -0,0 +1,8 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class TaggingTest < Test::Unit::TestCase + load_all_fixtures + + should_belong_to :post + should_belong_to :tag +end diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb new file mode 100644 index 00000000..1fc74d89 --- /dev/null +++ b/test/unit/user_test.rb @@ -0,0 +1,13 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class UserTest < Test::Unit::TestCase + load_all_fixtures + + should_have_many :posts + + should_not_allow_values_for :email, "blah", "b lah" + should_allow_values_for :email, "a@b.com", "asdf@asdf.com" + should_ensure_length_in_range :email, 1..100 + should_ensure_value_in_range :age, 1..100 + should_protect_attributes :password +end