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 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

I am trying to test that a method to load a UI matrix is
I'm trying to test a model method using Play Framework 2.0 and Specs2. Global.scala
I'm trying to test a presenter method using a Capybara RSpec matcher. Lets say
I'm trying to test an Order entity method called AddItem and I'm trying to
I'm am trying to test wcf method in C#. method return type is ilist.
My test is trying to assert that a certain dal method was called, with
I'm trying to unit test a private method that I have attached to my
I'm trying to write a method like this: public static T Test<T>() { if
I am trying to create a unit test for a method that takes a
Specifically, I'm trying to create a unit test for a method which requires uses

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.