set abilities tests to pending, need to discuss further

This commit is contained in:
Rafael Schouten
2014-09-28 22:55:49 +10:00
parent dc7c9ea272
commit a49991c696

View File

@@ -6,12 +6,13 @@ module Spree
describe User do
describe "broad permissions" do
# TODO work out what permissions are meant to be now...
pending "broad permissions" do
subject { AbilityDecorator.new(user) }
let(:user) { create(:user) }
let(:enterprise_full) { create(:enterprise, type: 'full') }
let(:enterprise_single) { create(:enterprise, type: 'single') }
let(:enterprise_profile) { create(:enterprise, type: 'profile') }
let(:enterprise_full) { create(:enterprise, sells: 'full') }
let(:enterprise_single) { create(:enterprise, sells: 'single') }
let(:enterprise_profile) { create(:enterprise, sells: 'profile') }
describe "creating enterprises" do
it "can create enterprises straight off the bat" do