require 'spec_helper' describe "Admin Builds" do let(:project) { FactoryGirl.create :project } let(:commit) { FactoryGirl.create :commit, project: project } let(:build) { FactoryGirl.create :build, commit: commit } before do skip_admin_auth login_as :user end describe "GET /admin/builds" do before do build visit admin_builds_path end it { page.should have_content "All builds" } it { page.should have_content build.short_sha } end end