require File.expand_path('../spec_helper', __FILE__) RSpec.describe CodeRay do describe '::VERSION' do it "returns the Gem's version" do expect(CodeRay::VERSION).to match(/\A\d\.\d\.\d?\z/) end end describe '.coderay_path' do it 'returns an absolute file path to the given code file' do base = File.expand_path('../..', __FILE__) expect(CodeRay.coderay_path('file')).to eq("#{base}/lib/coderay/file") end end end