lib/templates/spec/spec_helper.rb.eruby in skellington-0.4.15 vs lib/templates/spec/spec_helper.rb.eruby in skellington-0.4.16
- old
+ new
@@ -1,8 +1,9 @@
require 'coveralls'
Coveralls.wear_merged!
+require 'rack/test'
require '<%= @gen.wormname %>'
RSpec.configure do |config|
config.expect_with :rspec do |expectations|
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
@@ -11,6 +12,11 @@
config.mock_with :rspec do |mocks|
mocks.verify_partial_doubles = true
end
config.order = :random
+
+ include Rack::Test::Methods
+ def app
+ <%= @gen.camelname %>::App
+ end
end