Skip to content

Instantly share code, notes, and snippets.

@prathamesh-sonpatki
Created October 19, 2016 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prathamesh-sonpatki/e492533f6272bbfe6b0b4b323daa88d5 to your computer and use it in GitHub Desktop.
Save prathamesh-sonpatki/e492533f6272bbfe6b0b4b323daa88d5 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"
# Activate the gem you are reporting the issue against.
gem "rails", "4.2.6"
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 "/" => "test#index"
end
end
class TestController < ActionController::Base
include Rails.application.routes.url_helpers
def index
render plain: "Home"
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
assert_equal ' 500', helper.number_to_currency(500.00, unit: '', precision: 0, delimiter: '.')
end
private
def app
Rails.application
end
def helper
TestController.helpers
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment