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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T04:23:36+00:00 2026-06-01T04:23:36+00:00

I’ve got a test I’m trying to debug and I’ve noticed that the values

  • 0

I’ve got a test I’m trying to debug and I’ve noticed that the values are not being set to the user attributes properly. When I run p user.height_feet or p user.height_inches from the debug console, I get nil, when instead I expect the them to return 1 and 8 respectively in the first iteration. p invalid_height.first and p invalid_height.second return 1 and 8 properly, however.

Here is the code:

describe "when height is invalid" do
  invalid_height = [[1, 8], [8, 2], [5, 13], ['text', 'text'], ['text', 11], [5, 'text'], ['', '']]
  invalid_height.each do |invalid_height|
    before do
      user.height_feet = invalid_height.first
      user.height_inches = invalid_height.second
    end

    it "should not be valid" do
      debugger
      user.should_not be_valid
    end
  end
end

And the output at the debug terminal:

(rdb:1) p user.height_feet
nil
(rdb:1) p user.height_inches
nil
(rdb:1) p invalid_height.first
1
(rdb:1) p invalid_height.second
8

Someone in the #rubyonrails IRC channel suggested that it may be a scope issue and asked where my user is defined, saying that my before and it blocks may be referring to different users. I didn’t think this should be an issue because I have other tests in the same spec file with both before and it blocks that run just fine. Thoughts?

  • 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-06-01T04:23:37+00:00Added an answer on June 1, 2026 at 4:23 am

    You need to think what your code is doing.

    It goes through the each and creates a before and an it "should not be valid"
    but these are all eval-ed in the same scope.

    So you create a load of before blocks

    before do
      user.height_feet = 1
      user.height_inches = 8
    end
    
    before do
      user.height_feet = 8
      user.height_inches = 2
    end
    
    ...
    
    before do
      user.height_feet = ""
      user.height_inches = ""
    end
    

    And you create a load of it blocks

    it "should not be valid" do
      debugger
      user.should_not be_valid
    end
    
    it "should not be valid" do
      debugger
      user.should_not be_valid
    end
    
    ...
    
    it "should not be valid" do
      debugger
      user.should_not be_valid
    end
    

    So the result of all of your tests is basically just

    before do
      user.height_feet = ""
      user.height_inches = ""
    end
    
    it "should not be valid" do
      debugger
      user.should_not be_valid
    end
    

    Which I believe was not your intent.

    The obvious fix is to use a context block. This will seal each pair of statements into a context.

    [[1, 8], [8, 2], [5, 13], ['text', 'text'], ['text', 11], [5, 'text'], ['', '']
    ].each do |feet, inches|
      context "with an invalid height of #{feet} feet, #{inches} inches" do
    
        before do
          user.height_feet = feet
          user.height_inches = inches
        end
    
        it "should not be valid" do
          debugger
          user.should_not be_valid
        end
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I need a function that will clean a strings' special characters. I do NOT
I'm trying to create an if statement in PHP that prevents a single post
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have a French site that I want to parse, but am running into

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.