Sha256: 8708f114f216105a741724b58b45fd88794b123138d1b5240d6ea7f598e11044
Contents?: true
Size: 978 Bytes
Versions: 20
Compression:
Stored size: 978 Bytes
Contents
require File.join(File.dirname(__FILE__), "test_generator_helper.rb") class TestPlainThemeGenerator < Test::Unit::TestCase include RubiGen::GeneratorTestHelper def setup bare_setup end def teardown bare_teardown end def test_generator_without_options run_generator('plain_theme', [], sources) %w[template.rhtml stylesheets/screen.css javascripts/rounded_corners_lite.inc.js].each do |file| assert_generated_file("website/#{file}") end end def test_generator_with_author_and_email run_generator('plain_theme', [], sources, {:author => "AUTHOR", :email => "EMAIL"}) %w[template.rhtml stylesheets/screen.css javascripts/rounded_corners_lite.inc.js].each do |file| assert_generated_file("website/#{file}") end end private def sources [RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),"..", generator_path)) ] end def generator_path "newgem_theme_generators" end end
Version data entries
20 entries across 20 versions & 1 rubygems