Remove duplicity from tests.
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 14 Jun 2016 21:54:59 +0000 (23:54 +0200)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 14 Jun 2016 21:56:33 +0000 (23:56 +0200)
test/test_helper.rb

index 9e2c80e..ccd3a38 100644 (file)
@@ -1,17 +1,3 @@
 require './application'
 require 'minitest/autorun'
 require 'rack/test'
-
-class LunchTest < Minitest::Test
-  include Rack::Test::Methods
-
-  def app
-    Now::Application
-  end
-
-  def test_my_default
-    get '/'
-    assert_equal Now::API_VERSION, last_response.body
-  end
-
-end