public
Description: Merb Plugins: Even more modules to hook up your Merb installation
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-plugins.git
100644 14 lines (13 sloc) 0.345 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# http://hassox.blogspot.com/2008/01/merb-supports-rspec-text-stories.html
# based on merb_stories
# Author: Daniel Neighman
# Web: http://hassox.blogspot.com
 
module Merb
  module Test
    class RspecStory
      include Merb::Test::ControllerHelper
      include Merb::Test::RouteHelper
      include Merb::Test::ViewHelper
    end
  end
end