Skip to content

Commit

Permalink
Added a missing option for the 'ResourceTester'
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienCastex committed Jun 15, 2017
1 parent be66fb5 commit b007f28
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/resource/std/resourceTester/ResourceTester.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ var DefaultResourceTesterOptions = (function () {
this.canBeCreated = true;
this.canBeDeleted = true;
this.canBeRenamed = true;
this.canGetLocks = true;
this.canGetSize = true;
this.canBeMoved = true;
this.canWrite = true;
Expand Down
1 change: 1 addition & 0 deletions lib/resource/std/resourceTester/Types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export interface ResourceTesterOptions {
canBeCreated: boolean;
canBeDeleted: boolean;
canBeRenamed: boolean;
canGetLocks: boolean;
canGetSize: boolean;
canBeMoved: boolean;
canWrite: boolean;
Expand Down
1 change: 1 addition & 0 deletions src/resource/std/resourceTester/ResourceTester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class DefaultResourceTesterOptions implements ResourceTesterOptions
canBeCreated : boolean = true
canBeDeleted : boolean = true
canBeRenamed : boolean = true
canGetLocks : boolean = true
canGetSize : boolean = true
canBeMoved : boolean = true
canWrite : boolean = true
Expand Down
1 change: 1 addition & 0 deletions src/resource/std/resourceTester/Types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export interface ResourceTesterOptions
canBeCreated : boolean
canBeDeleted : boolean
canBeRenamed : boolean
canGetLocks : boolean
canGetSize : boolean
canBeMoved : boolean
canWrite : boolean
Expand Down

0 comments on commit b007f28

Please sign in to comment.