Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6595047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:53:20+00:00 2026-05-25T17:53:20+00:00

I have a method helper which reads files and directory and build html view.

  • 0

I have a method helper which reads files and directory and build html view. Like this:

def build_segment(path)
    html = ""
    Dir.new(path).each do |f|
      next if f == "." or f == ".."
      html << "<li>"
      if File.ftype(f) == 'directory'
        html << "<span class=folder>#{h(f.to_s)}</span>"
        html << "<ul>"
        html << build_segment(Dir.new(f))
        html << "</ul>"
      elsif File.ftype(f) == 'file'
        html << "<span class=file>#{h(f.to_s)} </span>"
      end
      html << "</li>"
    end
    html
  end

Usually to test some method we using mock objects – to send a fake object to testing method.
But here’s real file system. I can invent only one variant – create fake files on OS and then test the method.

Is there more neat and smart way to test this method? Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T17:53:22+00:00Added an answer on May 25, 2026 at 5:53 pm

    My suggestion is to stub and mock out the behavior of the internal things: Something like

    Dir.stub(:new).with(path).and_return([list of File mocks?])
    

    This way you can be sure you are only testing your code and not the code from the various ruby libraries you’re using.

    I find myself doing this with things like http based behavior. If I’m using the ruby http libraries not only do I not want to waste time testing those things but it’s expensive to actually fire off http requests and wait for responses. Stubbing those things out allows me to test how my code reacts to certain response types.

    I think it’s all about isolation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an MVC view with a form built with the Ajax.BeginForm() helper method,
In my Ruby on Rails app, I have a method in my helper which
So I have a helper method that looks something like the following: private D
For setting that I use Html helper method which is not the best imo,
I have helper method which is only checking if User is Authenticated but its
I have a helper method which encrypts some data on the iPhone. If the
I have an object obj that is passed into a helper method. public static
I have a method which takes params object[] such as: void Foo(params object[] items)
I have a fluent, extensible validation helper like: Assert.That(aParameter).IsNotNull(); It is extensible because the
I have a DB helper class which extends SQLiteOpenHelper and in onCreate, I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.