I'm using Rspec and I want to test a controller that is within a module that is within another module.
module Food
module Fruit
class ApplesController < ApplicationController
etc...
I currently have my rspec file apples_controller_spec.rb looking like
require 'spec_helper'
describe ApplesController do
etc..
What is the naming convention for Rspec in regards to testing a controller that is within two modules because currently I'm getting an error that uninitialized constant BurstsController (NameError).