Sha256: 01b2d22dfc322f5eb4927139ecccd553927dc61f97f372be4edb4271e695ca24

Contents?: true

Size: 411 Bytes

Versions: 1

Compression:

Stored size: 411 Bytes

Contents

= How to Test

Here is the following code for Rake testing

	% Rakefile

	task :default => [:test, :PlayRockPaperScissorsGame, :rps]

	file_path = "./test/test_rps.rb"

	task :test do 
		ruby file_path
	end

	task :PlayRockPaperScissorsGame do
		ruby file_path
	end

	task :rps do
		ruby file_path
	end

Meaning that you could techincally do `rake test`, `rake PlayRockPaperScissorsGame`, or `rake rps` to test.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
PlayRockPaperScissorsGame-2.1.8 rdocs/How_to_Test.rdoc