Monday, June 23, 2014

lib/ #a conventional place for all_ruby_source_code.rb
lib/the_source_file.rb
spec/ #a conventional place test_all_ruby_soruce_code_spec.rb
spec/test_the_source_file.rb

###
insdie spec/tester_file.rb
###
require 'the_source_file'
RSpec.describe(Class) do
 
## these look vaguely like english thats why
it("should existy probably") do

expect(Hangman.new).to(be_a(Hangman))

 end



end

No comments:

Post a Comment