Sha256: 12174405e8dfdc58fec123f416a954466a16a062842be9fec87db0d63768aa6c
Contents?: true
Size: 465 Bytes
Versions: 11
Compression:
Stored size: 465 Bytes
Contents
# frozen_string_literal: true require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "Stealth::Version" do let(:version_in_file) { File.read(File.join(File.dirname(__FILE__), '..', 'VERSION')).strip } it "should return the current gem version" do expect(Stealth::Version.version).to eq version_in_file end it "should return the current gem version via a constant" do expect(Stealth::VERSION).to eq version_in_file end end
Version data entries
11 entries across 11 versions & 1 rubygems