public
Rubygem
Description: Ruby helpers for avatar display
Clone URL: git://github.com/gcnovus/avatar.git
Search Repo:
avatar / test / test_avatar.rb
100644 12 lines (9 sloc) 0.294 kb
1
2
3
4
5
6
7
8
9
10
11
12
require File.dirname(__FILE__) + '/test_helper.rb'
 
class TestAvatar < Test::Unit::TestCase
  
  def setup
  end
  
  def test_load_path_includes_avatar_lib
    lib_path = File.expand_path(File.join(File.dirname(__FILE__), ['..', 'lib']))
    assert $:.include?(lib_path)
  end
end