Sha256: e991e7802fb671f9d154f5cabd419bae56949d2079ab86fd9b5c4b3c2e7b8761
Contents?: true
Size: 516 Bytes
Versions: 1
Compression:
Stored size: 516 Bytes
Contents
# frozen_string_literal: true require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "Stealth::Services::Alexa::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::Services::Alexa::Version.version).to eq version_in_file end it "should return the current gem version via a constant" do expect(Stealth::Services::Alexa::VERSION).to eq version_in_file end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stealth-alexa-1.0.0.pre1 | spec/version_spec.rb |