Sha256: 41beb09c412339a610cf6ee0ea89fb9125ab05434e9ab0677c3099c219c44c95
Contents?: true
Size: 519 Bytes
Versions: 16
Compression:
Stored size: 519 Bytes
Contents
# frozen_string_literal: true require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "Stealth::Services::Twilio::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::Twilio::Version.version).to eq version_in_file end it "should return the current gem version via a constant" do expect(Stealth::Services::Twilio::VERSION).to eq version_in_file end end
Version data entries
16 entries across 16 versions & 1 rubygems