adding all of botlist, initial add
[botlist.git] / botlistprojects / botgems_remote / ruby / rspec / simple_test_single_nh.rb
blobd7fcf2a3043054ad0dbdbc63e95abbab8a2e7a19
1 ########################################
2 # Rspec tests
3 # Author: Berlin Brown
4 # Date: 3/10/2008
6 # Rspec simple single test.  Modify this test
7 # to only test one unit.
8
9 # Single test - no help
10 ########################################
12 # Have to manually find the library files; example:
13 # require File.join(File.dirname(__FILE__), '../../../../WEB-INF/lib/ruby/web/foaf', 'edit_foaf')
15 include Java
17 # Load the agent aggregate library (remoting library)
18 require File.join(File.dirname(__FILE__), '../', 'agent_botlist_aggregate')
19 require File.join(File.dirname(__FILE__), '../', 'agent_archive')
21 describe "Simple test <single test>" do
22   before(:each) do
23     @cur_sess_id = rand(1000000)
24   end
26   it "Should do nothing, simple jruby rspec test" do
27     puts "[!]"
28   end  
30 end # End of module
32 # End of the script