# At the moment refinements don't allow introspection
using FasterPath::RefinePathname
Pathname.new(v).relative?
end
end
refute RefinedPathname.new.relative?()
end
assert_raises(TypeError) { RefinedPathname.new.relative?(nil) }
assert_raises(TypeError) { Pathname.new(nil).relative? }
end
end