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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:02:50+00:00 2026-05-28T04:02:50+00:00

I have a model with a relationship like this: class Category < ActiveRecord::Base has_many

  • 0

I have a model with a relationship like this:

class Category < ActiveRecord::Base
 has_many :items
end

class Item < ActiveRecord::Base
  belongs_to :category
  before_save :default_values
  validates_presence_of :header

  def default_values
    if self.category.cat_is_enabled==true
      self.is_enabled=true
    end
  end
end

I’d like to just check the validates_presence_of with:

require ‘spec_helper’

describe Item do
  pending "add some examples to (or delete) #{__FILE__}"
  it "should have a header value" do
    mi=Item.create(:header => "").should_not be_valid
  end
end

but I get an error on this for “undefined method `cat_is_enabled’ for nil:NilClass”. How would I turn off default values? Is there a better way to test validations?

thx

  • 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-28T04:02:51+00:00Added an answer on May 28, 2026 at 4:02 am

    Here’s an idea:

    Code

    class ActiveRecord::Base
      def self.without_callback(callback, &block)
        method = self.send(:instance_method, callback)
        self.send(:remove_method, callback)
        self.send(:define_method, callback) {true}
        yield
        self.send(:remove_method, callback)
        self.send(:define_method, callback, method)
      end
    end 
    

    Usage

    Item.without_callback(:before_save) do
        mi = Item.create(:header => "").should_not be_valid
    end
    

    Credit: article from Intridea.

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

Sidebar

Related Questions

I have a model like this class Parent < ActiveRecord::Base :has_many :kids end class
I have a basic Core data model like this: Class -Class Name (string) Relationship:
i have three models, all for a has_many :through relationship. They look like this:
I have models with many to many relationships like this: class Contact(models.Model): name =
I have a relationship in a Core Data model that feels like it wants
I have a to-many relationship in my data model, and I'd like to get
I have a simple has_one/belongs_to relationship between two models. This is a new association
So I have an observer which looks like this: class RecipeObserver < Mongoid::Observer def
I have a model like this: Client - which has many Locations - which
I have a simple question. I have a model that looks like this: public

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.