admin_users.rb 239 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 class AdminUsers < Spinach::FeatureSteps include SharedAuthentication include SharedPaths include SharedAdmin Then 'I should see all users' do User.all.each do |user| page.should have_content user.name end end end