31 lines
681 B
Ruby
31 lines
681 B
Ruby
require 'spec_helper'
|
|
|
|
describe "Workouts" do
|
|
before :all do
|
|
@workout = FactoryGirl.create(:workout)
|
|
end
|
|
|
|
describe "GET /workouts" do
|
|
it "should return 200" do
|
|
visit workouts_path
|
|
page.status_code.should be 200
|
|
end
|
|
|
|
it "should return workouts" do
|
|
visit workouts_path
|
|
page.should have_content @workout.date
|
|
end
|
|
end
|
|
|
|
describe "GET /workouts/(:id)" do
|
|
it "should return 200" do
|
|
visit "#{workouts_path}/#{@workout.id}"
|
|
page.status_code.should be 200
|
|
end
|
|
|
|
it "should return the correct workout" do
|
|
visit "#{workouts_path}/#{@workout.id}"
|
|
page.should have_content @workout.date
|
|
end
|
|
end
|
|
end
|