fakefs/test/verify.rb

27 lines
796 B
Ruby
Raw Normal View History

2009-07-16 20:18:43 +00:00
# Figure out what's missing from fakefs
#
# USAGE
#
# $ ruby test/verify.rb | grep "not implemented"
require "test_helper"
2009-11-08 06:04:16 +00:00
2009-07-16 20:18:43 +00:00
class FakeFSVerifierTest < Test::Unit::TestCase
(RealFile.methods - Class.new.methods).each do |name|
define_method("test #{name} class method") do
assert File.respond_to?(name), "File.#{name} not implemented"
end
end
2009-11-08 06:04:16 +00:00
2009-07-16 20:18:43 +00:00
(RealFile.instance_methods - Enumerable.instance_methods).each do |name|
define_method("test #{name} instance method") do
assert File.instance_methods.include?(name), "File##{name} not implemented"
end
end
2009-11-08 06:04:16 +00:00
2009-07-16 20:18:43 +00:00
(RealFileUtils.methods - Class.new.methods).each do |name|
define_method("test #{name} module method") do
assert FileUtils.respond_to?(name), "FileUtils.#{name} not implemented"
end
end
end