instiki/vendor/rails/railties/test/generators/rails_helper_generator_test.rb
Jacques Distler 4e14ccc74d Instiki 0.16.3: Rails 2.3.0
Instiki now runs on the Rails 2.3.0 Candidate Release.
Among other improvements, this means that it now 
automagically selects between WEBrick and Mongrel.

Just run

    ./instiki --daemon
2009-02-04 14:26:08 -06:00

37 lines
1.1 KiB
Ruby

require File.dirname(__FILE__) + '/generator_test_helper'
class RailsHelperGeneratorTest < GeneratorTestCase
def test_helper_generates_helper
run_generator('helper', %w(products))
assert_generated_helper_for :products
assert_generated_helper_test_for :products
end
def test_helper_generates_namespaced_helper
run_generator('helper', %w(admin::products))
assert_generated_helper_for "admin::products"
assert_generated_helper_test_for "admin::products"
end
def test_helper_generates_namespaced_and_not_namespaced_helpers
run_generator('helper', %w(products))
# We have to require the generated helper to show the problem because
# the test helpers just check for generated files and contents but
# do not actually load them. But they have to be loaded (as in a real environment)
# to make the second generator run fail
require "#{RAILS_ROOT}/app/helpers/products_helper"
assert_nothing_raised do
begin
run_generator('helper', %w(admin::products))
ensure
# cleanup
Object.send(:remove_const, :ProductsHelper)
end
end
end
end