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