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

  • Home
  • SEARCH
  • 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 5980509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:48:38+00:00 2026-05-22T21:48:38+00:00

The method I am trying to test is: def self.load_file(file) lookup = ” if

  • 0

The method I am trying to test is:

def self.load_file(file)
  lookup = ''

  if file.extension.include? "abc"
    lookup = file.extension
  else
    lookup = file.last_updated
  end  

  @location = Location.find_by_lookup(lookup)

  @location
end

So I need to stub the file so it responds to extension and last_updated calls.
I also need to mock the call to file.last_updated because I want to make sure that if the file extension has ‘abc’, it doesn’t lookup by extension but by ‘last_updated’.

How can I test this?

  • 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-22T21:48:39+00:00Added an answer on May 22, 2026 at 9:48 pm

    Your flow would look something like this (substitute “MyClass” with the actual name of your class):

    it "should lookup by last_updated for abc files" do
      update_time = Time.now
      # create a location to match this update_time here
      file = double("file")
      file.should_receive(:extension).and_return("abc")
      file.should_receive(:last_update).and_return(update_time)
      MyClass.load_file(file).should == Location.find_by_lookup(update_time)
    end
    
    it "should lookup by extension for all other files" do
      # create a location to match the "def" extension here
      file = double("file")
      file.should_receive(:extension).twice.and_return("def")
      file.should_not_receive(:last_update)
      MyClass.load_file(file).should == Location.find_by_lookup("def")
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to test my extension method that converts a list of strings in
I'm trying to test a method I have in my application, but I don't
I am trying to test that a particular method throws an expected exception from
I am trying to write a unit test for an action method which calls
I'm trying to create an Extension Method for MVC's htmlHelper. The purpose is to
Trying to convert super(B, self).method() into a simple nice bubble() call. Did it ,
I'm trying to test a method on my model. Running in the console works,
I'm trying to test a method on the application controller that will be used
I'm trying to test a method which calls a couple of other methods in
I'm trying to write a test for the following method: public class Sort {

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.