Sha256: f4baf164e371c81510dcd2b4446af67ea0788da229bda01eea83ae3882b39e0e

Contents?: true

Size: 1.63 KB

Versions: 9

Compression:

Stored size: 1.63 KB

Contents

# Copyright, 2012, 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 'teapot/context'

module Teapot::ContextSpec
	ROOT = Build::Files::Path.new(__dir__)
	
	describe Teapot::Context do
		it "should load teapot.rb file" do
			context = Teapot::Context.new(ROOT)
		
			# There is one configuration:
			expect(context.configurations.count).to be == 1
		
			# No targets were defined:
			expect(context.targets.count).to be == 0
		
			default_configuration = context.configuration
		
			# 13 defined packages + 1 implicit package.
			expect(default_configuration.packages.count).to be == 14
		end
	end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
teapot-1.0.0.pre.rc10 spec/teapot/context_spec.rb
teapot-1.0.0.pre.rc9 spec/teapot/context_spec.rb
teapot-1.0.0.pre.rc7 spec/teapot/context_spec.rb
teapot-1.0.0.pre.rc6 spec/teapot/context_spec.rb
teapot-1.0.0.pre.rc5 spec/teapot/context_spec.rb
teapot-1.0.0.pre.rc4 spec/teapot/context_spec.rb
teapot-1.0.0.pre.rc3 spec/teapot/context_spec.rb
teapot-1.0.0.pre.rc2 spec/teapot/context_spec.rb
teapot-1.0.0.pre.rc1 spec/teapot/context_spec.rb