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