Read more

RSpec example groups can be named using symbols

Thomas Klemm
September 16, 2014Software engineer

Though nowhere to be found in the official docs, this works just fine.

describe Facebook::Post do
  it_behaves_like :time_series
end

shared_examples_for :time_series do
  # shared example code
end
Illustration book lover

Growing Rails Applications in Practice

Check out our e-book. Learn to structure large Ruby on Rails codebases with the tools you already know and love.

  • Introduce design conventions for controllers and user-facing models
  • Create a system for growth
  • Build applications to last
Read more Show archive.org snapshot
Posted by Thomas Klemm to makandra dev (2014-09-16 12:23)