Skip to content

Instantly share code, notes, and snippets.

@noili
Created December 14, 2015 21:15
Show Gist options
  • Save noili/97b3bad4a9e058b8b843 to your computer and use it in GitHub Desktop.
Save noili/97b3bad4a9e058b8b843 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
gem 'minitest', '>= 5.0.0'
require 'minitest/autorun'
require_relative 'princess'
require 'pry'
class ArrayTest < Minitest::Test
def test_princess_play
assert_output('You are knocked from the round.') { Princess.play }
end
end
class Princess
def self.play
puts "You are knocked from the round."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment