git://scientific.zcu.cz
/
now.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8061654
)
Remove duplicity from tests.
author
František Dvořák
<valtri@civ.zcu.cz>
Tue, 14 Jun 2016 21:54:59 +0000
(23:54 +0200)
committer
František Dvořák
<valtri@civ.zcu.cz>
Tue, 14 Jun 2016 21:56:33 +0000
(23:56 +0200)
test/test_helper.rb
patch
|
blob
|
blame
|
history
diff --git
a/test/test_helper.rb
b/test/test_helper.rb
index
9e2c80e
..
ccd3a38
100644
(file)
--- a/
test/test_helper.rb
+++ b/
test/test_helper.rb
@@
-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