Sha256: 61249301141b05174598449cdd13f55f9bd0129d4db67362352a7869ad9be64f

Contents?: true

Size: 615 Bytes

Versions: 1

Compression:

Stored size: 615 Bytes

Contents

require "spec_helper"

describe "ActionMailerInclusion" do
  it "should include the ControllerMethods module" do
    ActionMailer::Base.included_modules.should include(ThemesForRails::ControllerMethods)
  end
end

describe "ActionControllerInclusion" do
  it "should include the ControllerMethods module" do
    ActionController::Base.included_modules.should include(ThemesForRails::ControllerMethods)
  end
end

describe "ApplicationControllerInclusion" do
  it "should include the ControllerMethods module" do
    ApplicationController.included_modules.should include(ThemesForRails::ControllerMethods)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
themes_for_rails-1.0.0rc1 spec/lib/controller_methods_spec.rb