lk | update rails version, fix logging in specs, and remove turbolinks

This commit is contained in:
Louis Knapp
2015-09-18 17:50:37 -05:00
parent 2c98232f46
commit ac9921a879
6 changed files with 143 additions and 96 deletions
+3 -1
View File
@@ -11,7 +11,9 @@ describe BikesController do
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)
expect{
post :create, bike: FactoryGirl.attributes_for(:bike)
}.to change(Bike, :count).by(1)
end
end