None of this makes any sense :) dblock@dblock-magenta:~/source/Gravity/dblock$ find . -name "*.rb" | xargs grep PagesController
./spec/controllers/admin/pages_controller_spec.rb:describe Admin::PagesController do ./spec/controllers/pages_controller_spec.rb:describe PagesController do ./app/controllers/admin/pages_controller.rb:class Admin::PagesController < AdminController ./app/controllers/pages_controller.rb:class PagesController < ApplicationController Now, lets compare with a controller that doesn't yield the same issue. dblock@dblock-magenta:~/source/Gravity/dblock$ find . -name "*.rb" | xargs grep ArtworksController ./spec/controllers/admin/artworks_controller_spec.rb:describe Admin::ArtworksController do ./spec/controllers/artworks_controller_spec.rb:describe ArtworksController do ./app/controllers/admin/artworks_controller.rb:class Admin::ArtworksController < AdminController ./app/controllers/artworks_controller.rb:class ArtworksController < ApplicationController These are identical, unless I'm blind :) The only thing different is timestamps - it looks like in the case where things work the Admin spec is loaded after the non-admin spec. _______________________________________________ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users