I\'m trying to write some tests (not for code coverage, but irrelevant here) in rspec for a ROR app and need to alias describe and it, at the least. I can alias describe jus
You want to use alias_example_to:
RSpec.configure do |c| c.alias_example_to :they end
This is part of the public API of RSpec.