I'm getting 3 test failures and 2 RSpec failures on trunk right now.
Is anybody else seeing this?
ep...@beast:programming/tracks
$ rake spec
(in /Users/epall/programming/tracks)
Creating sqlite :memory: database
....****......................**...****..........F*....................F..*..........................
Pending:
/notes/_notes.rhtml should parse Textile links correctly (figure out how to
mock or work with with UJS)
Called from ./spec/views/notes/_notes.rhtml_spec.rb:35
/notes/_notes.rhtml should auto-link embedded URLs (figure out how to mock or
work with with UJS)
Called from ./spec/views/notes/_notes.rhtml_spec.rb:28
/notes/_notes.rhtml should auto-link URLs (figure out how to mock or work with
with UJS)
Called from ./spec/views/notes/_notes.rhtml_spec.rb:21
/notes/_notes.rhtml should render (figure out how to mock or work with with UJS)
Called from ./spec/views/notes/_notes.rhtml_spec.rb:15
User knows if there is any user through #no_users_yet? (TODO: better
description) (Not Yet Implemented)
Called from ./spec/models/user_spec.rb:117
User has a custom finder to find by openid url (Not Yet Implemented)
Called from ./spec/models/user_spec.rb:116
User validates presence of open_id_url only when using openid (Not Yet
Implemented)
Called from ./spec/models/user_spec.rb:97
User validates confirmation of password only when password is required (Not Yet
Implemented)
Called from ./spec/models/user_spec.rb:96
User validates presence of password_confirmation only when password is required
(Not Yet Implemented)
Called from ./spec/models/user_spec.rb:95
User validates presence of password only when password is required (Not Yet
Implemented)
Called from ./spec/models/user_spec.rb:94
Todo when setting show_from is speced (Not Yet Implemented)
Called from ./spec/models/todo_spec.rb:168
Todo validates presence of show_from when deferred (Not Yet Implemented)
Called from ./spec/models/todo_spec.rb:31
1)
NoMethodError in 'Todo when toggling star flag toggles to not starred when
starred'
undefined method `add_tag' for #<Todo:0x3862ba0>
./spec/models/todo_spec.rb:181:
2)
NoMethodError in 'Todo is starred if tag is "starred"'
undefined method `add_tag' for #<Todo:0x39c2cfc>
./spec/models/todo_spec.rb:173:
Finished in 1.312568 seconds
101 examples, 2 failures, 12 pending
rake aborted!
Command /opt/local/bin/ruby
-I"/Users/epall/programming/tracks/vendor/plugins/rspec/lib"
"/Users/epall/programming/tracks/vendor/plugins/rspec/bin/spec"
"spec/models/context_spec.rb" "spec/models/todo_spec.rb"
"spec/models/user_spec.rb" "spec/views/notes/_notes.rhtml_spec.rb"
"spec/views/todos/_toggle_notes.rhtml_spec.rb" --options
"/Users/epall/programming/tracks/spec/spec.opts" failed
(See full trace by running task with --trace)
rake spec 9.79s user 2.51s system 81% cpu 15.145 total
ep...@beast:programming/tracks
$
[git:core]
$ rake test
(in /Users/epall/programming/tracks)
/opt/local/bin/ruby -Ilib:test
"/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb"
"test/unit/context_test.rb" "test/unit/message_gateway_test.rb"
"test/unit/notes_test.rb" "test/unit/preference_test.rb"
"test/unit/project_test.rb" "test/unit/prototype_helper_extensions_test.rb"
"test/unit/recurring_todo_test.rb" "test/unit/tag_test.rb"
"test/unit/tagging_test.rb" "test/unit/todo_create_params_helper_test.rb"
"test/unit/todo_test.rb" "test/unit/user_test.rb"
Creating sqlite :memory: database
Loaded suite
/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader
Started
............................................................................................................................................................
Finished in 3.013888 seconds.
156 tests, 523 assertions, 0 failures, 0 errors
/opt/local/bin/ruby -Ilib:test
"/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb"
/opt/local/bin/ruby -Ilib:test
"/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb"
/opt/local/bin/ruby -Ilib:test
"/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb"
"test/views/todos_helper_test.rb"
Creating sqlite :memory: database
Loaded suite
/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader
Started
......
Finished in 0.078917 seconds.
6 tests, 14 assertions, 0 failures, 0 errors
/opt/local/bin/ruby -Ilib:test
"/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb"
"test/functional/backend_controller_test.rb"
"test/functional/contexts_controller_test.rb"
"test/functional/data_controller_test.rb"
"test/functional/feedlist_controller_test.rb"
"test/functional/integrations_controller_test.rb"
"test/functional/login_controller_test.rb"
"test/functional/notes_controller_test.rb"
"test/functional/preferences_controller_test.rb"
"test/functional/projects_controller_test.rb"
"test/functional/recurring_todos_controller_test.rb"
"test/functional/stats_controller_test.rb"
"test/functional/todos_controller_test.rb"
"test/functional/users_controller_test.rb"
Creating sqlite :memory: database
Loaded suite
/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader
Started
......................EE.......................................................E..................................................................................
Finished in 10.367327 seconds.
1) Error:
test_show_renders_show_template(ContextsControllerTest):
ActionView::TemplateError: You have a nil object when you didn't expect it!
The error occurred while evaluating nil.recurring_target_as_text
On line #20 of app/views/todos/_todo.html.erb
17: <%= link_to(
18: image_tag("recurring16x16.png"),
19: {:controller => "recurring_todos", :action => "index"},
20: :class => "recurring_icon", :title =>
recurrence_pattern_as_text(@todo.recurring_todo)) if @todo.from_recurring_todo?
%>
21: <%= tag_list %>
22: <%= deferred_due_date %>
23: <%= project_and_context_links( parent_container_type,
:suppress_context => suppress_context, :suppress_project => suppress_project )
%>
app/helpers/application_helper.rb:163:in `recurrence_pattern_as_text'
app/views/todos/_todo.html.erb:20
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:20:in `render'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:19:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:45:in
`render_partial'
vendor/rails/actionpack/lib/action_view/partials.rb:184:in
`render_partial_collection'
vendor/rails/actionpack/lib/action_view/partials.rb:179:in `map'
vendor/rails/actionpack/lib/action_view/partials.rb:179:in
`render_partial_collection'
vendor/rails/actionpack/lib/action_view/partials.rb:150:in `render_partial'
vendor/rails/actionpack/lib/action_view/base.rb:258:in `render'
app/views/contexts/_context.rhtml:39
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:20:in `render'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:19:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:45:in
`render_partial'
vendor/rails/actionpack/lib/action_view/partials.rb:152:in `render_partial'
vendor/rails/actionpack/lib/action_view/base.rb:258:in `render'
app/views/contexts/show.html.erb:2
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/base.rb:256:in `render'
vendor/rails/actionpack/lib/action_view/base.rb:367:in `_render_with_layout'
vendor/rails/actionpack/lib/action_view/base.rb:254:in `render'
vendor/rails/actionpack/lib/action_controller/base.rb:1174:in
`render_for_file'
vendor/rails/actionpack/lib/action_controller/base.rb:905:in
`render_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:135:in `send'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:135:in
`custom'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:160:in `call'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:160:in
`respond'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:158:in `each'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:158:in
`respond'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in
`respond_to'
app/controllers/contexts_controller.rb:34:in `show'
vendor/rails/actionpack/lib/action_controller/base.rb:1253:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:1253:in
`perform_action_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:617:in
`call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:610:in
`perform_action_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in
`perform_action_without_rescue'
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in
`perform_action_without_rescue'
vendor/rails/actionpack/lib/action_controller/rescue.rb:136:in
`perform_action_without_caching'
vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in
`perform_action'
vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in
`cache'
vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in
`perform_action'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in
`process_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:606:in
`process_without_session_management_support'
vendor/rails/actionpack/lib/action_controller/session_management.rb:134:in
`process_without_test'
vendor/rails/actionpack/lib/action_controller/test_process.rb:18:in
`process'
vendor/rails/actionpack/lib/action_controller/test_process.rb:407:in
`process'
vendor/rails/actionpack/lib/action_controller/test_process.rb:376:in `get'
test/functional/contexts_controller_test.rb:162:in
`test_show_renders_show_template'
vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:94:in
`__send__'
vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:94:in
`run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
/opt/local/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite'
/opt/local/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in
`start_mediator'
/opt/local/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start'
/opt/local/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run'
/opt/local/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run'
/opt/local/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run'
/opt/local/lib/ruby/1.8/test/unit.rb:278
/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb:5
2) Error:
test_show_sets_title(ContextsControllerTest):
ActionView::TemplateError: You have a nil object when you didn't expect it!
The error occurred while evaluating nil.recurring_target_as_text
On line #20 of app/views/todos/_todo.html.erb
17: <%= link_to(
18: image_tag("recurring16x16.png"),
19: {:controller => "recurring_todos", :action => "index"},
20: :class => "recurring_icon", :title =>
recurrence_pattern_as_text(@todo.recurring_todo)) if @todo.from_recurring_todo?
%>
21: <%= tag_list %>
22: <%= deferred_due_date %>
23: <%= project_and_context_links( parent_container_type,
:suppress_context => suppress_context, :suppress_project => suppress_project )
%>
app/helpers/application_helper.rb:163:in `recurrence_pattern_as_text'
app/views/todos/_todo.html.erb:20
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:20:in `render'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:19:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:45:in
`render_partial'
vendor/rails/actionpack/lib/action_view/partials.rb:184:in
`render_partial_collection'
vendor/rails/actionpack/lib/action_view/partials.rb:179:in `map'
vendor/rails/actionpack/lib/action_view/partials.rb:179:in
`render_partial_collection'
vendor/rails/actionpack/lib/action_view/partials.rb:150:in `render_partial'
vendor/rails/actionpack/lib/action_view/base.rb:258:in `render'
app/views/contexts/_context.rhtml:39
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:20:in `render'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:19:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:45:in
`render_partial'
vendor/rails/actionpack/lib/action_view/partials.rb:152:in `render_partial'
vendor/rails/actionpack/lib/action_view/base.rb:258:in `render'
app/views/contexts/show.html.erb:2
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/base.rb:256:in `render'
vendor/rails/actionpack/lib/action_view/base.rb:367:in `_render_with_layout'
vendor/rails/actionpack/lib/action_view/base.rb:254:in `render'
vendor/rails/actionpack/lib/action_controller/base.rb:1174:in
`render_for_file'
vendor/rails/actionpack/lib/action_controller/base.rb:905:in
`render_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:135:in `send'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:135:in
`custom'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:160:in `call'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:160:in
`respond'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:158:in `each'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:158:in
`respond'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in
`respond_to'
app/controllers/contexts_controller.rb:34:in `show'
vendor/rails/actionpack/lib/action_controller/base.rb:1253:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:1253:in
`perform_action_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:617:in
`call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:610:in
`perform_action_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in
`perform_action_without_rescue'
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in
`perform_action_without_rescue'
vendor/rails/actionpack/lib/action_controller/rescue.rb:136:in
`perform_action_without_caching'
vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in
`perform_action'
vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in
`cache'
vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in
`perform_action'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in
`process_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:606:in
`process_without_session_management_support'
vendor/rails/actionpack/lib/action_controller/session_management.rb:134:in
`process_without_test'
vendor/rails/actionpack/lib/action_controller/test_process.rb:18:in
`process'
vendor/rails/actionpack/lib/action_controller/test_process.rb:407:in
`process'
vendor/rails/actionpack/lib/action_controller/test_process.rb:376:in `get'
test/functional/contexts_controller_test.rb:156:in `test_show_sets_title'
vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:94:in
`__send__'
vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:94:in
`run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
/opt/local/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite'
/opt/local/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in
`start_mediator'
/opt/local/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start'
/opt/local/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run'
/opt/local/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run'
/opt/local/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run'
/opt/local/lib/ruby/1.8/test/unit.rb:278
/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb:5
3) Error:
test_show_exposes_previous_project_in_same_state(ProjectsControllerTest):
ActionView::TemplateError: You have a nil object when you didn't expect it!
The error occurred while evaluating nil.recurring_target_as_text
On line #20 of app/views/todos/_todo.html.erb
17: <%= link_to(
18: image_tag("recurring16x16.png"),
19: {:controller => "recurring_todos", :action => "index"},
20: :class => "recurring_icon", :title =>
recurrence_pattern_as_text(@todo.recurring_todo)) if @todo.from_recurring_todo?
%>
21: <%= tag_list %>
22: <%= deferred_due_date %>
23: <%= project_and_context_links( parent_container_type,
:suppress_context => suppress_context, :suppress_project => suppress_project )
%>
app/helpers/application_helper.rb:163:in `recurrence_pattern_as_text'
app/views/todos/_todo.html.erb:20
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:20:in `render'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:19:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:45:in
`render_partial'
vendor/rails/actionpack/lib/action_view/partials.rb:184:in
`render_partial_collection'
vendor/rails/actionpack/lib/action_view/partials.rb:179:in `map'
vendor/rails/actionpack/lib/action_view/partials.rb:179:in
`render_partial_collection'
vendor/rails/actionpack/lib/action_view/partials.rb:150:in `render_partial'
vendor/rails/actionpack/lib/action_view/base.rb:258:in `render'
app/views/projects/_project.rhtml:26
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:20:in `render'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:26:in
`benchmark'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:19:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/renderable_partial.rb:45:in
`render_partial'
vendor/rails/actionpack/lib/action_view/partials.rb:152:in `render_partial'
vendor/rails/actionpack/lib/action_view/base.rb:258:in `render'
app/views/projects/show.html.erb:6
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `send'
vendor/rails/actionpack/lib/action_view/renderable.rb:39:in `render'
vendor/rails/actionpack/lib/action_view/template.rb:73:in `render_template'
vendor/rails/actionpack/lib/action_view/base.rb:256:in `render'
vendor/rails/actionpack/lib/action_view/base.rb:367:in `_render_with_layout'
vendor/rails/actionpack/lib/action_view/base.rb:254:in `render'
vendor/rails/actionpack/lib/action_controller/base.rb:1174:in
`render_for_file'
vendor/rails/actionpack/lib/action_controller/base.rb:905:in
`render_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb:8:in
`realtime'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:51:in `render'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:135:in `send'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:135:in
`custom'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:160:in `call'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:160:in
`respond'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:158:in `each'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:158:in
`respond'
vendor/rails/actionpack/lib/action_controller/mime_responds.rb:107:in
`respond_to'
app/controllers/projects_controller.rb:60:in `show'
vendor/rails/actionpack/lib/action_controller/base.rb:1253:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:1253:in
`perform_action_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:617:in
`call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:610:in
`perform_action_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in
`perform_action_without_rescue'
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in
`perform_action_without_rescue'
vendor/rails/actionpack/lib/action_controller/rescue.rb:136:in
`perform_action_without_caching'
vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:13:in
`perform_action'
vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in
`cache'
vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
vendor/rails/actionpack/lib/action_controller/caching/sql_cache.rb:12:in
`perform_action'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in
`process_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:606:in
`process_without_session_management_support'
vendor/rails/actionpack/lib/action_controller/session_management.rb:134:in
`process_without_test'
vendor/rails/actionpack/lib/action_controller/test_process.rb:18:in
`process'
vendor/rails/actionpack/lib/action_controller/test_process.rb:407:in
`process'
vendor/rails/actionpack/lib/action_controller/test_process.rb:376:in `get'
test/functional/projects_controller_test.rb:43:in
`test_show_exposes_previous_project_in_same_state'
vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:94:in
`__send__'
vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:94:in
`run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each'
/opt/local/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run'
/opt/local/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite'
/opt/local/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in
`start_mediator'
/opt/local/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start'
/opt/local/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run'
/opt/local/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run'
/opt/local/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run'
/opt/local/lib/ruby/1.8/test/unit.rb:278
/opt/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb:5
162 tests, 503 assertions, 0 failures, 3 errors
rake aborted!
Command failed with status (1): [/opt/local/bin/ruby -Ilib:test "/opt/local...]
(See full trace by running task with --trace)
rake test 33.40s user 7.56s system 53% cpu 1:15.96 total
_______________________________________________
Tracks-discuss mailing list
[email protected]
http://lists.rousette.org.uk/mailman/listinfo/tracks-discuss