#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/spec_helper.rb'

include Citrus
include Net::IRC
include Constants

describe String do
	it "should define utility method for encoding" do
		"".to_u8.should == ""
		"".to_u16.should == ""
		"".to_euc.should == ""
		"".to_jis.should == ""
		"".to_sjis.should == ""
	end

	it "should define utility method for indentation" do
		<<-EOS.unindent.should == "one\n\ttwo\none\n"
			one
				two
			one
		EOS
	end
end

