Skip to content

Instantly share code, notes, and snippets.

@masaki925
Created February 20, 2017 01:31
Show Gist options
  • Save masaki925/5691f7ebeeac4ed2723c412e0ec91808 to your computer and use it in GitHub Desktop.
Save masaki925/5691f7ebeeac4ed2723c412e0ec91808 to your computer and use it in GitHub Desktop.
require 'minitest/autorun'
class Foo
def bar
true
end
end
class TestFoo < MiniTest::Test
def setup
@foo = Foo.new
end
def test_bar
assert_equal true, @foo.bar
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment