You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
466 B
18 lines
466 B
require 'spec_helper'
|
|
describe BikesController do
|
|
|
|
let(:user){FactoryGirl.create(:user)}
|
|
let(:bike){FactoryGirl.create(:bike)}
|
|
|
|
before :each do
|
|
controller.stub(:current_user).and_return(user)
|
|
controller.stub(:authenticate_user!).and_return true
|
|
end
|
|
|
|
describe "POST #create" do
|
|
it "creates a new bike with valid credentials" do
|
|
expect{post :create, bike: FactoryGirl.attributes_for(:bike)}.to change(Bike, :count).by(1)
|
|
end
|
|
end
|
|
|
|
end
|
|
|