#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'lib'
#
describe LIB do
    #
    it "should instanciate Test class" do
        LIB::Test.new
    end
    #
    it "should respond to hello" do
        LIB::Test.new.respond_to?( :hello).should be_true
    end
    #
    it "should respond to world to hello" do
        LIB::Test.new.hello.should eql "world"
    end
    #
end