Class: TestHelloWorld

Inherits:
MiniTest::Unit::TestCase
  • Object
show all
Defined in:
lib/vesper/framework/tests/hello_world.rb

Instance Method Summary collapse

Instance Method Details

#setupObject



2
3
4
# File 'lib/vesper/framework/tests/hello_world.rb', line 2

def setup
  @user = User.new
end

#test_knock_knock_jokeObject



6
7
8
# File 'lib/vesper/framework/tests/hello_world.rb', line 6

def test_knock_knock_joke
  assert_equal "Who's there?", @user.knock_knock
end