Skip to content

Instantly share code, notes, and snippets.

@nosolopau
Created February 5, 2016 15:47
Show Gist options
  • Save nosolopau/1158e0282b9f7b47662d to your computer and use it in GitHub Desktop.
Save nosolopau/1158e0282b9f7b47662d to your computer and use it in GitHub Desktop.
require_relative "echo"
require "minitest/autorun"
class TestEcho < Minitest::Test
def setup
@echo = Echo.new
end
def test_simple_scenario
assert_equal 'one', @echo.one
assert_equal 'two', @echo.two
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment