Sha256: 974b61f4f789db042ec2cb91dd820b21cd9f8704ed08648f1fab6f6acd0e26e3

Contents?: true

Size: 446 Bytes

Versions: 4

Compression:

Stored size: 446 Bytes

Contents

# -*- ruby -*-
#encoding: utf-8

require 'helpers'
require 'rspec'
require 'fivefish'

describe Fivefish do

	describe "version methods" do
		it "returns a version string if asked" do
			expect( described_class.version_string ).to match( /\w+ [\d.]+/ )
		end


		it "returns a version string with a build number if asked" do
			expect( described_class.version_string(true) ).
				to match( /\w+ [\d.]+ \(build [[:xdigit:]]+\)/ )
		end
	end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rdoc-generator-fivefish-0.4.0 spec/fivefish_spec.rb
rdoc-generator-fivefish-0.3.0 spec/fivefish_spec.rb
rdoc-generator-fivefish-0.2.1 spec/fivefish_spec.rb
rdoc-generator-fivefish-0.2.0 spec/fivefish_spec.rb