17 lines
386 B
Ruby
17 lines
386 B
Ruby
# encoding: UTF-8
|
|
require 'spec_helper'
|
|
|
|
describe SupplierController, type: :controller do
|
|
before :each do
|
|
@supplier = Supplier.find_by_email('supplier@mozo.bar') || Supplier.create(name: 'Supplier', email: 'supplier@mozo.bar', password: 'secret')
|
|
sign_in @supplier
|
|
end
|
|
|
|
describe "GET settings" do
|
|
it 'displays the settings page' do
|
|
get :edit
|
|
end
|
|
end
|
|
|
|
end
|