Extending 'context' with new methods in RSpec
1 2 module Spec::Runner::ContextEval::ModuleMethods 3 def new_method 4 # ... 5 end 6 end
Then use like that:
1 2 context "Some state" do 3 new_method 4 end
DZone Snippets > infrared > rspec
13506 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
MichaĆ Kwiatkowski http://joker.linuxstuff.pl
1 2 module Spec::Runner::ContextEval::ModuleMethods 3 def new_method 4 # ... 5 end 6 end
1 2 context "Some state" do 3 new_method 4 end