summaryrefslogtreecommitdiff
path: root/spec/coderay_spec.rb
blob: 2c7b91e46a4ef2322f71d1cebb52da71aad70e28 (plain)
1
2
3
4
5
6
7
8
9
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
end