aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/stylesheets_generator_test.rb
blob: aaeb686daac154913ed7276ca6bcfc81044f5bf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'generators/generators_test_helper'
require 'rails/generators/rails/stylesheets/stylesheets_generator'

class StylesheetsGeneratorTest < Rails::Generators::TestCase
  include GeneratorsTestHelper

  def test_copy_stylesheets
    run_generator
    assert_file "public/stylesheets/scaffold.css"
  end

  def test_stylesheets_are_not_deleted_on_revoke
    run_generator
    run_generator [], :behavior => :revoke
    assert_file "public/stylesheets/scaffold.css"
  end
end