Sha256: d0c4f38cfb3d839a58b231f7edb6c9dd8900a2c869e8dea4e8ce55e370dafe7f

Contents?: true

Size: 1.51 KB

Versions: 16

Compression:

Stored size: 1.51 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/merge'

module Teapot::MergeSpec
	describe Teapot::Merge do
		TARGET_FILE = <<-EOF
class Bob {
	int alice();
}
EOF
		
		TEMPLATE = <<-EOF
class Bob {
	int bob();
}
EOF
		
		MERGED = <<-EOF
class Bob {
	int alice();
	int bob();
}
EOF

		it "can merge two files" do
			merged = Teapot::Merge.combine(TARGET_FILE.lines, TEMPLATE.lines)
			
			expect(merged).to be == MERGED.lines 
		end
	end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
teapot-1.3.1 spec/teapot/merge_spec.rb
teapot-1.3.0 spec/teapot/merge_spec.rb
teapot-1.2.6 spec/teapot/merge_spec.rb
teapot-1.2.5 spec/teapot/merge_spec.rb
teapot-1.2.4 spec/teapot/merge_spec.rb
teapot-1.2.3 spec/teapot/merge_spec.rb
teapot-1.2.2 spec/teapot/merge_spec.rb
teapot-1.2.1 spec/teapot/merge_spec.rb
teapot-1.2.0 spec/teapot/merge_spec.rb
teapot-1.1.2 spec/teapot/merge_spec.rb
teapot-1.1.1 spec/teapot/merge_spec.rb
teapot-1.1.0 spec/teapot/merge_spec.rb
teapot-1.0.3 spec/teapot/merge_spec.rb
teapot-1.0.2 spec/teapot/merge_spec.rb
teapot-1.0.1 spec/teapot/merge_spec.rb
teapot-1.0.0 spec/teapot/merge_spec.rb