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 CSSidvalue 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
idvalue to theshared_examples_for "any user view"method using something likeit_should_behave_like "any user view", css_scope. Anyway, If I use that code I get the error: "... undefined methodbuild_css_scope' for # (NoMethodError)`".