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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T11:31:32+00:00 2026-05-22T11:31:32+00:00

In rspec and similar testing frameworks, how does one test for the absence of

  • 0

In rspec and similar testing frameworks, how does one test for the absence of a method?

I’ve just started fiddling with rspec and bacon (a simplified version of rspec.) I wanted to define test that would confirm that a class only allows read access to an instance variable. So I want a class that looks like:

class Alpha
  attr_reader :readOnly

  #... some methods

end  

I am rather stumped:

  it "will provide read-only access to the readOnly variable" do
    # now what???
  end

I don’t see how the various types of provided test can test for the absence of the accessor method. I’m a noob in ruby and ruby testing so I’m probably missing something simple.

  • 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-22T11:31:33+00:00Added an answer on May 22, 2026 at 11:31 am

    In Ruby, you can check if an object responds to a method with obj.respond_to?(:method_name), so with rspec, you can use:

    Alpha.new.should_not respond_to(:readOnly=)
    

    Alternatively, since classes could override the respond_to? method, you can be stricter and make sure that there is no assignment method by actually calling it and asserting that it raises:

    expect { Alpha.new.readOnly = 'foo' }.to raise_error(NoMethodError)
    

    See RSpec Expectations for reference.

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

Sidebar

Related Questions

I'm adding more rspec testing to my app and would like to test a
I'm using rspec-rails, version 1.2.6. In a controller test describe WebsController do ... I
I'm using Cucumber with a page object similar to the simplified version shown below.
my rspec test is giving me NameError: undefined local variable or method `confirmed_at' for
I've written an rspec test using Watir against a web application and it's running
I have problems to get rspec running properly to test validates_inclusion_of my migration looks
RSpec newbie here. I'm trying to test my models, which have methods that uses
In our rspec test for rails 3.1.0 app, we use both Factory.build and Factory.attributes_for.
I'm new to rspec and fairly new to rails. When writing test cases for
I'm using rspec for testing and hornsby scenarios for object graphs used in tests.

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.