spec/lib/net/ntlm/version_spec.rb in rubyntlm-0.4.0 vs spec/lib/net/ntlm/version_spec.rb in rubyntlm-0.5.0
- old
+ new
@@ -1,26 +1,27 @@
require 'spec_helper'
+require File.expand_path("#{File.dirname(__FILE__)}/../../../../lib/net/ntlm/version")
describe Net::NTLM::VERSION do
it 'should contain an integer value for Major Version' do
- Net::NTLM::VERSION::MAJOR.should be_an Integer
+ expect(Net::NTLM::VERSION::MAJOR).to be_an Integer
end
it 'should contain an integer value for Minor Version' do
- Net::NTLM::VERSION::MINOR.should be_an Integer
+ expect(Net::NTLM::VERSION::MINOR).to be_an Integer
end
it 'should contain an integer value for Patch Version' do
- Net::NTLM::VERSION::TINY.should be_an Integer
+ expect(Net::NTLM::VERSION::TINY).to be_an Integer
end
it 'should contain an aggregate version string' do
string = [
Net::NTLM::VERSION::MAJOR,
Net::NTLM::VERSION::MINOR,
Net::NTLM::VERSION::TINY
].join('.')
- Net::NTLM::VERSION::STRING.should be_a String
- Net::NTLM::VERSION::STRING.should == string
+ expect(Net::NTLM::VERSION::STRING).to be_a String
+ expect(Net::NTLM::VERSION::STRING).to eq(string)
end
-end
\ No newline at end of file
+end