Skip to content

Instantly share code, notes, and snippets.

@haslinger
Last active March 11, 2016 09:30
Show Gist options
  • Save haslinger/b08b473e63574ba33196 to your computer and use it in GitHub Desktop.
Save haslinger/b08b473e63574ba33196 to your computer and use it in GitHub Desktop.
begin
require 'bundler/inline'
rescue LoadError => e
$stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler'
raise e
end
gemfile(true) do
source 'https://rubygems.org'
gem 'rails', '5.0.0.beta3'
gem 'jbuilder', '~> 2.0'
gem 'byebug'
end
require 'rack/test'
require 'action_controller/railtie'
class TestApp < Rails::Application
config.root = File.dirname(__FILE__)
config.session_store :cookie_store, key: 'cookie_store_key'
secrets.secret_token = 'secret_token'
secrets.secret_key_base = 'secret_key_base'
config.logger = Logger.new($stdout)
Rails.logger = config.logger
routes.draw do
get 'error' => 'test#fails', defaults: { format: :json }
get 'working' => 'test#ok', defaults: { format: :json }
end
end
class TestController < ActionController::Base
include Rails.application.routes.url_helpers
protect_from_forgery with: :exception
skip_before_action :verify_authenticity_token
def fails
render json: {error: "i won't show up"} , status: 422
end
def ok
render json: {fine: "i do show up"} , status: 200
end
end
require 'minitest/autorun'
# Ensure backward compatibility with Minitest 4
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test)
class BugTest < Minitest::Test
include Rack::Test::Methods
def test_returns_success
get '/working'
assert_match /show up/, last_response.body
end
def test_returns_failure
get '/error'
assert_match /show up/, last_response.body
end
private
def app
Rails.application
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment