Sha256: 59a567ef1ce6a00b35f9d37a60b7ffa94b62d4c6fc49ddbc2d5555b9090a3d3a

Contents?: true

Size: 1.57 KB

Versions: 13

Compression:

Stored size: 1.57 KB

Contents

# Copyright, 2016, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'build/environment'

RSpec.describe "Build::Environment#checksum" do
	it "should compute a checksum" do
		e = Build::Environment.new do
			a 10
			b 20
		end.evaluate
		
		expect(e.checksum).to be == "3a781e8f5250ccb2bca472085a4e366188621d8a"
	end
	
	it "should compute same checksum when keys are in different order" do
		e = Build::Environment.new do
			b 20
			a 10
		end.evaluate
		
		expect(e.checksum).to be == "3a781e8f5250ccb2bca472085a4e366188621d8a"
	end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
build-environment-1.13.0 spec/build/environment/checksum_spec.rb
build-environment-1.12.1 spec/build/environment/checksum_spec.rb
build-environment-1.12.0 spec/build/environment/checksum_spec.rb
build-environment-1.11.0 spec/build/environment/checksum_spec.rb
build-environment-1.10.1 spec/build/environment/checksum_spec.rb
build-environment-1.9.0 spec/build/environment/checksum_spec.rb
build-environment-1.8.0 spec/build/environment/checksum_spec.rb
build-environment-1.7.0 spec/build/environment/checksum_spec.rb
build-environment-1.6.0 spec/build/environment/checksum_spec.rb
build-environment-1.5.0 spec/build/environment/checksum_spec.rb
build-environment-1.4.0 spec/build/environment/checksum_spec.rb
build-environment-1.3.0 spec/build/environment/checksum_spec.rb
build-environment-1.2.0 spec/build/environment/checksum_spec.rb