Skip to content

Commit

Permalink
Merge pull request #756 from stephenplusplus/spp--storage-acl-test-skip
Browse files Browse the repository at this point in the history
storage: skip acl delete tests
  • Loading branch information
callmehiphop committed Jul 29, 2015
2 parents 89ff928 + 96d5469 commit df92b13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions system-test/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('storage', function() {
});
});

it('should add entity to default access controls', function(done) {
it.skip('should add entity to default access controls', function(done) {
bucket.acl.default.add({
entity: USER_ACCOUNT,
role: storage.acl.OWNER_ROLE
Expand Down Expand Up @@ -140,7 +140,7 @@ describe('storage', function() {
});
});

it('should grant an account access', function(done) {
it.skip('should grant an account access', function(done) {
bucket.acl.add({
entity: USER_ACCOUNT,
role: storage.acl.OWNER_ROLE
Expand All @@ -159,7 +159,7 @@ describe('storage', function() {
});
});

it('should update an account', function(done) {
it.skip('should update an account', function(done) {
bucket.acl.add({
entity: USER_ACCOUNT,
role: storage.acl.OWNER_ROLE
Expand Down Expand Up @@ -317,7 +317,7 @@ describe('storage', function() {
assert.equal(typeof file.default, 'undefined');
});

it('should grant an account access', function(done) {
it.skip('should grant an account access', function(done) {
file.acl.add({
entity: USER_ACCOUNT,
role: storage.acl.OWNER_ROLE
Expand All @@ -334,7 +334,7 @@ describe('storage', function() {
});
});

it('should update an account', function(done) {
it.skip('should update an account', function(done) {
file.acl.add({
entity: USER_ACCOUNT,
role: storage.acl.OWNER_ROLE
Expand Down

0 comments on commit df92b13

Please sign in to comment.