Skip to content

Instantly share code, notes, and snippets.

@PeteMichaud
Created May 28, 2012 21:18
Show Gist options
  • Save PeteMichaud/2821255 to your computer and use it in GitHub Desktop.
Save PeteMichaud/2821255 to your computer and use it in GitHub Desktop.
require 'spec_helper'
require 'LoginHelper'
require 'rake'
describe "Admin User CRUD" do
include LoginHelper
it 'should list users' do
Rake::Task['db:populate'].invoke '10'
admin_login
visit '/admin/users'
page.should have_tag 'tr', :count => 11
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment