README 594 B

123456789101112
  1. rspec is a meta-gem, which depends on the rspec-core,
  2. rspec-expectations and rspec-mocks gems. Each of these can be
  3. installed separately and loaded in isolation using require. Among
  4. other benefits, this allows you to use rspec-expectations, for
  5. example, in Test::Unit::TestCase if you happen to prefer that style.
  6. Conversely, if you like RSpec's approach to declaring example groups
  7. and examples (describe and it) but prefer Test::Unit assertions and
  8. mocha, rr or flexmock for mocking, you'll be able to do that without
  9. having to install or load the components of RSpec that you're not
  10. using.