Sha256: 2f6b1c61297e9a546762276c0bd690694c91ac6904e3fdeb61e3d28a9ab8678f

Contents?: true

Size: 1.68 KB

Versions: 1

Compression:

Stored size: 1.68 KB

Contents

require 'test_helper'
require 'generators/ember/component_generator'

class ComponentGeneratorTest < Rails::Generators::TestCase
  include GeneratorTestSupport

  tests Ember::Generators::ComponentGenerator
  destination File.join(Rails.root, "tmp", "generator_test_output")

  setup :prepare_destination

  test "default_component" do
    run_generator ["PostChart"]
    assert_file "#{app_path}/components/post-chart.es6"
    assert_file "#{app_path}/templates/components/post-chart.hbs"
  end

  test "Assert files are properly created (CamelCase)" do
    run_generator %w(PostChart)
    assert_file "#{app_path}/components/post-chart.es6"
    assert_file "#{app_path}/templates/components/post-chart.hbs"
  end

  test "Assert object names are properly created with CamelCase name" do
    run_generator %w(PostChart)
    assert_file "#{app_path}/components/post-chart.es6"
    assert_file "#{app_path}/templates/components/post-chart.hbs"
  end

  test "Assert files are properly created (lower-case)" do
    run_generator %w(post-chart)
    assert_file "#{app_path}/components/post-chart.es6"
    assert_file "#{app_path}/templates/components/post-chart.hbs"
  end

  test "Assert object names are properly created with lower-case name" do
    run_generator %w(post-chart)
    assert_file "#{app_path}/components/post-chart.es6"
    assert_file "#{app_path}/templates/components/post-chart.hbs"
  end

  test "Uses config.ember.appkit.paths.app" do
    custom_path = app_path("custom")

    with_config paths: {app: custom_path} do
      run_generator ["PostChart"]
      assert_file "#{custom_path}/components/post-chart.es6"
      assert_file "#{custom_path}/templates/components/post-chart.hbs"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ember-appkit-rails-0.5.0 test/generators/component_generator_test.rb