Sha256: ecad8728e41a57a308f054b56964469549bc81dcb15b5938c7a742a33b1a97c9

Contents?: true

Size: 564 Bytes

Versions: 1

Compression:

Stored size: 564 Bytes

Contents

require 'test_helper'
require 'rails/generators/rails/controller/controller_generator'
require 'rails/generators/myth/assets/assets_generator'

class ControllerGeneratorTest < Rails::Generators::TestCase
  tests Rails::Generators::ControllerGenerator

  destination File.expand_path("../tmp", __FILE__)
  setup do
    prepare_destination
    copy_routes
  end

  def test_assets
    run_generator %w(posts --stylesheet-engine=myth --orm=false)
    assert_no_file "app/assets/stylesheets/posts.css"
    assert_file "app/assets/stylesheets/posts.css.myth"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
myth-rails-1.0.1 test/controller_generator_test.rb