fakefs 1.9.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fakefs/dir.rb +1 -2
- data/lib/fakefs/file.rb +10 -12
- data/lib/fakefs/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 623bbb77bf9f14c0b57f7818f1194a32673c110af847fb69a60ed0d62746dcf8
|
4
|
+
data.tar.gz: 914093cd24ebab359108211762e77ba9c45d92805e28565d38e38756d2571a4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75910aa96b9a086823a1b3d922e1d67d6d2da0d7d618a15a7e0ff711f0e2648b28255c57a0190d3d8b10d009f2b29d27bac54959959b1fe0e2a8ca2c8b8eed14
|
7
|
+
data.tar.gz: 998b4563ccd6e258e50bb32fe1dffbd6673310d0ea18cb871c346073927b537598ebae3b4c39240467cb6622f328deda36acc9b8575de13b218ed329d3656470
|
data/lib/fakefs/dir.rb
CHANGED
@@ -66,7 +66,7 @@ module FakeFS
|
|
66
66
|
glob pattern
|
67
67
|
end
|
68
68
|
|
69
|
-
def self.
|
69
|
+
def self.exist?(path)
|
70
70
|
File.exist?(path) && File.directory?(path)
|
71
71
|
end
|
72
72
|
|
@@ -279,7 +279,6 @@ module FakeFS
|
|
279
279
|
alias getwd pwd
|
280
280
|
alias rmdir delete
|
281
281
|
alias unlink delete
|
282
|
-
alias exist? exists?
|
283
282
|
end
|
284
283
|
end
|
285
284
|
end
|
data/lib/fakefs/file.rb
CHANGED
@@ -51,8 +51,6 @@ module FakeFS
|
|
51
51
|
end
|
52
52
|
|
53
53
|
class << self
|
54
|
-
alias exists? exist?
|
55
|
-
|
56
54
|
def identical?(one_path, another_path)
|
57
55
|
FileSystem.find(one_path) == FileSystem.find(another_path)
|
58
56
|
end
|
@@ -74,7 +72,7 @@ module FakeFS
|
|
74
72
|
end
|
75
73
|
|
76
74
|
def self.mtime(path)
|
77
|
-
if
|
75
|
+
if exist?(path)
|
78
76
|
FileSystem.find(path).mtime
|
79
77
|
else
|
80
78
|
raise Errno::ENOENT
|
@@ -82,7 +80,7 @@ module FakeFS
|
|
82
80
|
end
|
83
81
|
|
84
82
|
def self.ctime(path)
|
85
|
-
if
|
83
|
+
if exist?(path)
|
86
84
|
FileSystem.find(path).ctime
|
87
85
|
else
|
88
86
|
raise Errno::ENOENT
|
@@ -90,7 +88,7 @@ module FakeFS
|
|
90
88
|
end
|
91
89
|
|
92
90
|
def self.atime(path)
|
93
|
-
if
|
91
|
+
if exist?(path)
|
94
92
|
FileSystem.find(path).atime
|
95
93
|
else
|
96
94
|
raise Errno::ENOENT
|
@@ -99,7 +97,7 @@ module FakeFS
|
|
99
97
|
|
100
98
|
def self.utime(atime, mtime, *paths)
|
101
99
|
paths.each do |path|
|
102
|
-
if
|
100
|
+
if exist?(path)
|
103
101
|
FileSystem.find(path).atime = atime
|
104
102
|
FileSystem.find(path).mtime = mtime
|
105
103
|
else
|
@@ -119,11 +117,11 @@ module FakeFS
|
|
119
117
|
end
|
120
118
|
|
121
119
|
def self.size?(path)
|
122
|
-
size(path) if
|
120
|
+
size(path) if exist?(path) && !size(path).zero?
|
123
121
|
end
|
124
122
|
|
125
123
|
def self.zero?(path)
|
126
|
-
|
124
|
+
exist?(path) && size(path) == 0
|
127
125
|
end
|
128
126
|
|
129
127
|
if RUBY_VERSION >= '2.4'
|
@@ -249,8 +247,8 @@ module FakeFS
|
|
249
247
|
|
250
248
|
def self.link(source, dest)
|
251
249
|
raise Errno::EPERM, "#{source} or #{dest}" if directory?(source)
|
252
|
-
raise Errno::ENOENT, "#{source} or #{dest}" unless
|
253
|
-
raise Errno::EEXIST, "#{source} or #{dest}" if
|
250
|
+
raise Errno::ENOENT, "#{source} or #{dest}" unless exist?(source)
|
251
|
+
raise Errno::EEXIST, "#{source} or #{dest}" if exist?(dest)
|
254
252
|
|
255
253
|
source = FileSystem.find(source)
|
256
254
|
dest = FileSystem.add(dest, source.entry.clone)
|
@@ -262,7 +260,7 @@ module FakeFS
|
|
262
260
|
def self.delete(*files)
|
263
261
|
files.each do |file|
|
264
262
|
file_name = (file.class == FakeFS::File ? file.path : file.to_s)
|
265
|
-
raise Errno::ENOENT, file_name unless
|
263
|
+
raise Errno::ENOENT, file_name unless exist?(file_name)
|
266
264
|
|
267
265
|
FileUtils.rm(file_name)
|
268
266
|
end
|
@@ -692,7 +690,7 @@ module FakeFS
|
|
692
690
|
end
|
693
691
|
|
694
692
|
def self.birthtime(path)
|
695
|
-
if
|
693
|
+
if exist?(path)
|
696
694
|
FileSystem.find(path).birthtime
|
697
695
|
else
|
698
696
|
raise Errno::ENOENT
|
data/lib/fakefs/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fakefs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Wanstrath
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: bump
|