allpro/spec/features/workouts_spec.rb

38 lines
886 B
Ruby

require 'spec_helper'
describe "Workouts" do
before :each do
@workout = FactoryGirl.create(:workout)
end
describe "GET /workouts" do
it "should return workouts" do
visit workouts_path
page.should have_content @workout.date
end
end
describe "GET /workouts/(:id)" do
it "should visit a workout" do
visit workouts_path
click_link @workout.date
current_path.should == workout_path(@workout.id)
page.should have_content @workout.date
end
it "should return the correct workout" do
visit "#{workouts_path}/#{@workout.id}"
page.should have_content @workout.date
end
end
describe "PUT /workouts/(:id)" do
it "should edit the workout" do
visit workouts_path
find("#workout_#{@workout.id}").click_link 'Edit'
current_path.should == edit_workout_path(@workout)
end
end
end