Sha256: de927d414add9c94aa4e2783f7969068f97b18f284ccea1c14d761fbbd3d8e74

Contents?: true

Size: 1.52 KB

Versions: 7

Compression:

Stored size: 1.52 KB

Contents

require File.dirname(__FILE__) + '/../test_helper'

# Make a test class with no options
class SlimTinyMCEController < ApplicationController
  uses_tiny_mce
  include TinyMCEActions
end

# Lets make sure that if routes arn't the
# defaults, these tests will still work
ActionController::Routing::Routes.draw do |map|
  map.with_options :controller => 'slim_tiny_mce' do |tiny_mce|
    tiny_mce.connect '/slim_tiny_mce/new_page', :action => 'new_page'
    tiny_mce.connect '/slim_tiny_mce/edit_page', :action => 'edit_page'
    tiny_mce.connect '/slim_tiny_mce/show_page', :action => 'show_page'
    tiny_mce.connect '/slim_tiny_mce/spellchecker', :action => 'spellchecker'
  end
end

# Use non-default action names to get around possible authentication
# filters to ensure the tests work in most cases
class SlimTinyMCEControllerTest <  ActionController::TestCase

  test "all instance variables are properly set on all pages" do
    get :new_page
    assert_instance_vars_set
    get :edit_page
    assert_instance_vars_set
    get :show_page
    assert_instance_vars_set
  end

  private

  def assert_instance_vars_set
    assert_response :success
    assert (assigns(:uses_tiny_mce) &&
            assigns(:uses_tiny_mce) == true)
    assert (assigns(:tiny_mce_configurations) &&
           assigns(:tiny_mce_configurations).is_a?(Array))

    # assert (assigns(:tiny_mce_options) &&
    #         assigns(:tiny_mce_options).is_a?(Hash))
    # assert (assigns(:raw_tiny_mce_options) &&
    #         assigns(:raw_tiny_mce_options) == '')
  end

end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
tiny_mce-0.1.8 test/functional/slim_tiny_mce_controller_test.rb
tiny_mce-0.1.7 test/functional/slim_tiny_mce_controller_test.rb
runtastic-tiny_mce-0.1.5 test/functional/slim_tiny_mce_controller_test.rb
runtastic-tiny_mce-0.1.5.pre test/functional/slim_tiny_mce_controller_test.rb
tiny_mce-0.1.4 test/functional/slim_tiny_mce_controller_test.rb
tiny_mce-0.1.3 test/functional/slim_tiny_mce_controller_test.rb
tiny_mce-0.1.2 test/functional/slim_tiny_mce_controller_test.rb