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