Last active
December 28, 2015 00:28
-
-
Save RKushnir/7413248 to your computer and use it in GitHub Desktop.
ActionController master bug report template issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unless File.exist?('Gemfile') | |
File.write('Gemfile', <<-GEMFILE) | |
source 'https://rubygems.org' | |
gem 'rails', github: 'rails/rails' | |
GEMFILE | |
system 'bundle' | |
end | |
require 'bundler' | |
Bundler.setup(:default) | |
require 'rails' | |
require 'action_controller/railtie' | |
class TestApp < Rails::Application | |
config.root = File.dirname(__FILE__) | |
config.session_store :cookie_store, key: 'cookie_store_key' | |
config.secret_token = 'secret_token' | |
config.secret_key_base = 'secret_key_base' | |
config.logger = Logger.new($stdout) | |
Rails.logger = config.logger | |
routes.draw do | |
resources :parents do | |
resources :children | |
end | |
end | |
end | |
class ChildrenController < ActionController::Base | |
def index | |
render text: parent_children_path | |
end | |
end | |
require 'minitest/autorun' | |
require 'rack/test' | |
class BugTest < Minitest::Test | |
include Rack::Test::Methods | |
def test_returns_success | |
get '/parents/foo/children' | |
end | |
private | |
def app | |
Rails.application | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NameError (undefined local variable or method `parent_children_path' for #<ChildrenController:0x00000002885980>): | |
action_controller_master.rb:34:in `index' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment