end of day commit

This commit is contained in:
2013-01-10 01:00:59 +01:00
parent b85bbf1aee
commit 87046c872c
23 changed files with 642 additions and 28 deletions
+16
View File
@@ -0,0 +1,16 @@
# encoding: UTF-8
require 'spec_helper'
describe SupplierController do
before :each do
@supplier = Supplier.find_by_email('supplier@qwaiter.com') || Supplier.create(name: 'Supplier', email: 'supplier@qwaiter.com', password: 'secret')
sign_in @supplier
end
describe "GET settings" do
it 'displays the settings page' do
get :edit
end
end
end