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.
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ClientsController do
|
|
|
|
let(:user){FactoryGirl.create(:user)}
|
|
|
|
let(:client){FactoryGirl.create(:client)}
|
|
|
|
|
|
|
|
before :each do
|
|
|
|
sign_in user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "PUT #update" do
|
|
|
|
xit "updates a client with an application date" do
|
|
|
|
put :update, id: client.id, client: {application_date: "12/21/2015"}
|
|
|
|
expect(client.reload.application_date.strftime('%m/%d/%Y')).to eq("12/21/2015")
|
|
|
|
end
|
|
|
|
xit "updates a client with a pickup date" do
|
|
|
|
put :update, id: client.id, client: {pickup_date: "12/21/2015"}
|
|
|
|
expect(client.reload.pickup_date.strftime('%m/%d/%Y')).to eq("12/21/2015")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|