Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Ruby on Rails 3.2.2 and rspec-rails-2.8.1. I am testing a view file and I would like to refactoring the following code but I don't know how to make that.

module UserExampleHelpers
  def build_css_scope(user)
    "div#user_#{user.id}"
  end
end

shared_examples_for "any user view" do
  it 'has the user CSS id' do
    rendered.should have_css(css_scope)
  end
end


describe 'users/show.html.erb' do
  include UserExampleHelpers

  context 'Context name 1' do
    let(:css_scope) {build_css_scope(@user)}

    it_should_behave_like "any user view"

    it "..." do
      ...
    end
  end

  context 'Context name 2' do
    let(:css_scope) {build_css_scope(@user)}

    it_should_behave_like "any user view"

    it "..." do
      ...
    end
  end
end

How can I refactor the above code? Can you give me some help?

Note: Known issues are

  • I know that my approach of running the let(:css_scope) in order to state a CSS id value used throughout all the spec file is not made the right way, but I don't know how to proceed so to properly make that.
  • Maybe I should pass the CSS id value to the shared_examples_for "any user view" method using something like it_should_behave_like "any user view", css_scope. Anyway, If I use that code I get the error: "... undefined methodbuild_css_scope' for # (NoMethodError)`".
share|improve this question
1  
It's not clear what problem are you trying to solve with the refactoring. – Alexey Apr 24 '12 at 19:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.