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 6172793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:27:16+00:00 2026-05-23T23:27:16+00:00

Note * I’m using Factory_girl, not sure if that matters here Currently, I do

  • 0

Note * I’m using Factory_girl, not sure if that matters here

Currently, I do the following to prep for doing a post:

  p = Factory.build(:le_object, :template_id => t.id.to_s)

Notice that I am deliberately converting it to a string

And then I just do your ordinary post:

  post :create, :le_object => p.attributes

But, what is fishy, is when I look in the test log, I see this:

Parameters: {"action"=>"create", ... "template_id"=>0, ... }

Notice how the id is NOT a string.

Now, this messes up the controller, because I do a not .empty? check on that field (because it is optional), and then that method in the controller does something entirely different.

This works fine in the app, when it is actually running, as for the same method, the console outputs this in dev / production:

Parameters: {"action"=>"create", ... "template_id"=>"1"...}

Notice how here the 1 is a string, because it came from a form, and in HTTP, everything is strings.

This is what in my code is failing, specifically:

if not params[:le_object][:template_id].nil? and not params[:le_object][:template_id].empty?

The issue currently, is that in the test, because it’s passing a number, instead of the string representation, I’m getting the error undefined method empty? for #:Fixnum

So… How do I change my code (test or otherwise) such that I can get this to work?

  • 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-23T23:27:18+00:00Added an answer on May 23, 2026 at 11:27 pm

    Rails defines the .blank? method on Object, meaning it works on just about anything (strings, numbers, etc.) The definition of .blank? is very simple:

    respond_to?(:empty?) ? empty? : !self
    

    It will default to use empty?, but if that method doesn’t exist on the object, it will just call !self. If the item is nil, then !nil will evaluate to true.

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

Sidebar

Related Questions

NOTE: I am a new user so I'm not allowed to post images nor
(Note: the data here is a made up example since I can't post the
NOTE: XMLIgnore is NOT the answer! OK, so following on from my question on
NOTE: I am not set on using VI, it is just the first thing
Note that I am not asking which to choose (MVC or MVP), but rather
Note: I'm using Windows file servers and .NET If I were to create a
Note: I've read this and its not quite what I'm looking for: I have
Note the tag: VBA , not VB6, not VB.NET. This is specific to VBA
(Note: This post has been edited to show specific use case. See bottom.) I
Note that singleton used in slightly uncommon sense - object visible as single instance

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.