summaryrefslogtreecommitdiff
path: root/spec/mspec/lib/mspec/helpers/mock_to_path.rb
blob: 2780afc54adde69b9efa0bca76a5cd7b33111c95 (plain)
1
2
3
4
5
6
def mock_to_path(path)
  # Cannot use our Object#mock here since it conflicts with RSpec
  obj = MockObject.new('path')
  obj.should_receive(:to_path).and_return(path)
  obj
end