public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
insoshi / spec / helpers / comments_helper_spec.rb
100644 13 lines (8 sloc) 0.332 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.dirname(__FILE__) + '/../spec_helper'
 
describe CommentsHelper do
  
  #Delete this example and add some real ones or delete this file
  it "should include the CommentHelper" do
    included_modules = (class << helper; self; end).send :included_modules
 
    included_modules.should include(CommentsHelper)
  end
  
end